@sap/ux-specification 1.84.43 → 1.84.46

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 (976) hide show
  1. package/CHANGELOG.md +78 -2
  2. package/dist/documentation/runDocu-min.js +9645 -2
  3. package/dist/documentation/runDocu-min.js.map +7 -0
  4. package/dist/documentation/styleDocu.css +32 -28
  5. package/dist/documentation/v2/v2-AnalyticalListPage.html +20 -8
  6. package/dist/documentation/v2/v2-ApplicationV2.html +20 -8
  7. package/dist/documentation/v2/v2-ListReport.html +20 -8
  8. package/dist/documentation/v2/v2-ObjectPage.html +20 -8
  9. package/dist/documentation/v2/v2-OverviewPage.html +20 -8
  10. package/dist/documentation/v4/v4-ApplicationV4.html +20 -8
  11. package/dist/documentation/v4/v4-ListReport.html +20 -8
  12. package/dist/documentation/v4/v4-ObjectPage.html +20 -8
  13. package/dist/index-min.js +29584 -2
  14. package/dist/index-min.js.map +7 -0
  15. package/dist/schemas/v2/AnalyticalListPageConfig.json +3 -2
  16. package/dist/schemas/v2/ApplicationV2.json +10 -1
  17. package/dist/schemas/v2/ListReportConfig.json +5 -4
  18. package/dist/schemas/v2/ObjectPageConfig.json +21 -20
  19. package/dist/schemas/v4/ApplicationV4.json +14 -1
  20. package/dist/schemas/v4/FreestylePageConfig.json +10 -0
  21. package/dist/schemas/v4/ListReportConfig.json +129 -37
  22. package/dist/types/api.d.ts +42 -0
  23. package/dist/types/api.d.ts.map +1 -0
  24. package/dist/types/apiTypes.d.ts +317 -0
  25. package/dist/types/apiTypes.d.ts.map +1 -0
  26. package/dist/types/extensionLogger.d.ts +42 -0
  27. package/dist/types/extensionLogger.d.ts.map +1 -0
  28. package/dist/types/i18n/i18n.d.ts +2 -0
  29. package/dist/types/i18n/i18n.d.ts.map +1 -0
  30. package/dist/types/index.d.ts +8 -0
  31. package/dist/types/index.d.ts.map +1 -0
  32. package/dist/types/project.d.ts +18 -0
  33. package/dist/types/project.d.ts.map +1 -0
  34. package/dist/types/specification/common/Application.d.ts +37 -0
  35. package/dist/types/specification/common/Application.d.ts.map +1 -0
  36. package/dist/types/specification/common/index.d.ts +6 -0
  37. package/dist/types/specification/common/index.d.ts.map +1 -0
  38. package/dist/types/specification/common/page.d.ts +48 -0
  39. package/dist/types/specification/common/page.d.ts.map +1 -0
  40. package/dist/types/specification/common/types.d.ts +17 -0
  41. package/dist/types/specification/common/types.d.ts.map +1 -0
  42. package/dist/types/specification/common/webapp/manifest/Manifest.d.ts +50 -0
  43. package/dist/types/specification/common/webapp/manifest/Manifest.d.ts.map +1 -0
  44. package/dist/types/specification/common/webapp/manifest/index.d.ts +4 -0
  45. package/dist/types/specification/common/webapp/manifest/index.d.ts.map +1 -0
  46. package/dist/types/specification/common/webapp/manifest/sapOvp.d.ts +376 -0
  47. package/dist/types/specification/common/webapp/manifest/sapOvp.d.ts.map +1 -0
  48. package/dist/types/specification/common/webapp/manifest/sapUi5.d.ts +34 -0
  49. package/dist/types/specification/common/webapp/manifest/sapUi5.d.ts.map +1 -0
  50. package/dist/types/specification/schemaAccess.d.ts +25 -0
  51. package/dist/types/specification/schemaAccess.d.ts.map +1 -0
  52. package/dist/types/specification/v2/ApplicationV2.d.ts +26 -0
  53. package/dist/types/specification/v2/ApplicationV2.d.ts.map +1 -0
  54. package/dist/types/specification/v2/controls/Action.d.ts +88 -0
  55. package/dist/types/specification/v2/controls/Action.d.ts.map +1 -0
  56. package/dist/types/specification/v2/controls/AnalyticalListPageChart.d.ts +59 -0
  57. package/dist/types/specification/v2/controls/AnalyticalListPageChart.d.ts.map +1 -0
  58. package/dist/types/specification/v2/controls/AnalyticalListPageKPI.d.ts +31 -0
  59. package/dist/types/specification/v2/controls/AnalyticalListPageKPI.d.ts.map +1 -0
  60. package/dist/types/specification/v2/controls/Card.d.ts +656 -0
  61. package/dist/types/specification/v2/controls/Card.d.ts.map +1 -0
  62. package/dist/types/specification/v2/controls/Facets.d.ts +18 -0
  63. package/dist/types/specification/v2/controls/Facets.d.ts.map +1 -0
  64. package/dist/types/specification/v2/controls/Field.d.ts +11 -0
  65. package/dist/types/specification/v2/controls/Field.d.ts.map +1 -0
  66. package/dist/types/specification/v2/controls/FilterBar.d.ts +196 -0
  67. package/dist/types/specification/v2/controls/FilterBar.d.ts.map +1 -0
  68. package/dist/types/specification/v2/controls/Footer.d.ts +21 -0
  69. package/dist/types/specification/v2/controls/Footer.d.ts.map +1 -0
  70. package/dist/types/specification/v2/controls/ObjectPageChart.d.ts +17 -0
  71. package/dist/types/specification/v2/controls/ObjectPageChart.d.ts.map +1 -0
  72. package/dist/types/specification/v2/controls/ObjectPageForm.d.ts +16 -0
  73. package/dist/types/specification/v2/controls/ObjectPageForm.d.ts.map +1 -0
  74. package/dist/types/specification/v2/controls/ObjectPageHeader.d.ts +35 -0
  75. package/dist/types/specification/v2/controls/ObjectPageHeader.d.ts.map +1 -0
  76. package/dist/types/specification/v2/controls/ObjectPageLayout.d.ts +23 -0
  77. package/dist/types/specification/v2/controls/ObjectPageLayout.d.ts.map +1 -0
  78. package/dist/types/specification/v2/controls/ObjectPageSection.d.ts +121 -0
  79. package/dist/types/specification/v2/controls/ObjectPageSection.d.ts.map +1 -0
  80. package/dist/types/specification/v2/controls/ObjectPageTable.d.ts +184 -0
  81. package/dist/types/specification/v2/controls/ObjectPageTable.d.ts.map +1 -0
  82. package/dist/types/specification/v2/controls/ObjectPageToolBar.d.ts +16 -0
  83. package/dist/types/specification/v2/controls/ObjectPageToolBar.d.ts.map +1 -0
  84. package/dist/types/specification/v2/controls/Table.d.ts +496 -0
  85. package/dist/types/specification/v2/controls/Table.d.ts.map +1 -0
  86. package/dist/types/specification/v2/controls/ToolBar.d.ts +9 -0
  87. package/dist/types/specification/v2/controls/ToolBar.d.ts.map +1 -0
  88. package/dist/types/specification/v2/controls/index.d.ts +18 -0
  89. package/dist/types/specification/v2/controls/index.d.ts.map +1 -0
  90. package/dist/types/specification/v2/index.d.ts +6 -0
  91. package/dist/types/specification/v2/index.d.ts.map +1 -0
  92. package/dist/types/specification/v2/page.d.ts +8 -0
  93. package/dist/types/specification/v2/page.d.ts.map +1 -0
  94. package/dist/types/specification/v2/pages/AnalyticalListPageConfig.d.ts +22 -0
  95. package/dist/types/specification/v2/pages/AnalyticalListPageConfig.d.ts.map +1 -0
  96. package/dist/types/specification/v2/pages/ListReportConfig.d.ts +13 -0
  97. package/dist/types/specification/v2/pages/ListReportConfig.d.ts.map +1 -0
  98. package/dist/types/specification/v2/pages/ObjectPageConfig.d.ts +34 -0
  99. package/dist/types/specification/v2/pages/ObjectPageConfig.d.ts.map +1 -0
  100. package/dist/types/specification/v2/pages/OverviewPageConfig.d.ts +128 -0
  101. package/dist/types/specification/v2/pages/OverviewPageConfig.d.ts.map +1 -0
  102. package/dist/types/specification/v2/pages/index.d.ts +5 -0
  103. package/dist/types/specification/v2/pages/index.d.ts.map +1 -0
  104. package/dist/types/specification/v2/webapp/index.d.ts +2 -0
  105. package/dist/types/specification/v2/webapp/index.d.ts.map +1 -0
  106. package/dist/types/specification/v2/webapp/manifest/index.d.ts +3 -0
  107. package/dist/types/specification/v2/webapp/manifest/index.d.ts.map +1 -0
  108. package/dist/types/specification/v2/webapp/manifest/sapUi.d.ts +11 -0
  109. package/dist/types/specification/v2/webapp/manifest/sapUi.d.ts.map +1 -0
  110. package/dist/types/specification/v2/webapp/manifest/sapUi5.d.ts +99 -0
  111. package/dist/types/specification/v2/webapp/manifest/sapUi5.d.ts.map +1 -0
  112. package/dist/types/specification/v2/webapp/manifest/sapUiPageV2.d.ts +32 -0
  113. package/dist/types/specification/v2/webapp/manifest/sapUiPageV2.d.ts.map +1 -0
  114. package/dist/types/specification/v4/ApplicationV4.d.ts +32 -0
  115. package/dist/types/specification/v4/ApplicationV4.d.ts.map +1 -0
  116. package/dist/types/specification/v4/controls/FilterBar.d.ts +19 -0
  117. package/dist/types/specification/v4/controls/FilterBar.d.ts.map +1 -0
  118. package/dist/types/specification/v4/controls/ObjectPageFooter.d.ts +12 -0
  119. package/dist/types/specification/v4/controls/ObjectPageFooter.d.ts.map +1 -0
  120. package/dist/types/specification/v4/controls/ObjectPageHeader.d.ts +30 -0
  121. package/dist/types/specification/v4/controls/ObjectPageHeader.d.ts.map +1 -0
  122. package/dist/types/specification/v4/controls/ObjectPageHeaderSection.d.ts +47 -0
  123. package/dist/types/specification/v4/controls/ObjectPageHeaderSection.d.ts.map +1 -0
  124. package/dist/types/specification/v4/controls/ObjectPageLayout.d.ts +15 -0
  125. package/dist/types/specification/v4/controls/ObjectPageLayout.d.ts.map +1 -0
  126. package/dist/types/specification/v4/controls/ObjectPageSection.d.ts +99 -0
  127. package/dist/types/specification/v4/controls/ObjectPageSection.d.ts.map +1 -0
  128. package/dist/types/specification/v4/controls/ObjectPageTable.d.ts +71 -0
  129. package/dist/types/specification/v4/controls/ObjectPageTable.d.ts.map +1 -0
  130. package/dist/types/specification/v4/controls/ObjectPageToolBar.d.ts +26 -0
  131. package/dist/types/specification/v4/controls/ObjectPageToolBar.d.ts.map +1 -0
  132. package/dist/types/specification/v4/controls/Table.d.ts +311 -0
  133. package/dist/types/specification/v4/controls/Table.d.ts.map +1 -0
  134. package/dist/types/specification/v4/controls/ToolBar.d.ts +54 -0
  135. package/dist/types/specification/v4/controls/ToolBar.d.ts.map +1 -0
  136. package/dist/types/specification/v4/controls/index.d.ts +11 -0
  137. package/dist/types/specification/v4/controls/index.d.ts.map +1 -0
  138. package/dist/types/specification/v4/index.d.ts +6 -0
  139. package/dist/types/specification/v4/index.d.ts.map +1 -0
  140. package/dist/types/specification/v4/page.d.ts +20 -0
  141. package/dist/types/specification/v4/page.d.ts.map +1 -0
  142. package/dist/types/specification/v4/pages/FreestylePageConfig.d.ts +3 -0
  143. package/dist/types/specification/v4/pages/FreestylePageConfig.d.ts.map +1 -0
  144. package/dist/types/specification/v4/pages/ListReportConfig.d.ts +37 -0
  145. package/dist/types/specification/v4/pages/ListReportConfig.d.ts.map +1 -0
  146. package/dist/types/specification/v4/pages/ObjectPageConfig.d.ts +19 -0
  147. package/dist/types/specification/v4/pages/ObjectPageConfig.d.ts.map +1 -0
  148. package/dist/types/specification/v4/pages/index.d.ts +4 -0
  149. package/dist/types/specification/v4/pages/index.d.ts.map +1 -0
  150. package/dist/types/specification/v4/webapp/index.d.ts +2 -0
  151. package/dist/types/specification/v4/webapp/index.d.ts.map +1 -0
  152. package/dist/types/specification/v4/webapp/manifest/ManifestSettings.d.ts +225 -0
  153. package/dist/types/specification/v4/webapp/manifest/ManifestSettings.d.ts.map +1 -0
  154. package/dist/types/specification/v4/webapp/manifest/index.d.ts +5 -0
  155. package/dist/types/specification/v4/webapp/manifest/index.d.ts.map +1 -0
  156. package/dist/types/specification/v4/webapp/manifest/sapUi5.d.ts +103 -0
  157. package/dist/types/specification/v4/webapp/manifest/sapUi5.d.ts.map +1 -0
  158. package/dist/types/specification/v4/webapp/manifest/sapUiPageV4.d.ts +83 -0
  159. package/dist/types/specification/v4/webapp/manifest/sapUiPageV4.d.ts.map +1 -0
  160. package/dist/types/sync/common/appProvider.d.ts +28 -0
  161. package/dist/types/sync/common/appProvider.d.ts.map +1 -0
  162. package/dist/types/sync/common/decoration/control.d.ts +51 -0
  163. package/dist/types/sync/common/decoration/control.d.ts.map +1 -0
  164. package/dist/types/sync/common/decoration/decorators.d.ts +13 -0
  165. package/dist/types/sync/common/decoration/decorators.d.ts.map +1 -0
  166. package/dist/types/sync/common/decoration/factory.d.ts +41 -0
  167. package/dist/types/sync/common/decoration/factory.d.ts.map +1 -0
  168. package/dist/types/sync/common/decoration/flex.d.ts +7 -0
  169. package/dist/types/sync/common/decoration/flex.d.ts.map +1 -0
  170. package/dist/types/sync/common/decoration/index.d.ts +4 -0
  171. package/dist/types/sync/common/decoration/index.d.ts.map +1 -0
  172. package/dist/types/sync/common/flexUtils.d.ts +32 -0
  173. package/dist/types/sync/common/flexUtils.d.ts.map +1 -0
  174. package/dist/types/sync/common/generate/index.d.ts +3 -0
  175. package/dist/types/sync/common/generate/index.d.ts.map +1 -0
  176. package/dist/types/sync/common/generate/objectPage.d.ts +61 -0
  177. package/dist/types/sync/common/generate/objectPage.d.ts.map +1 -0
  178. package/dist/types/sync/common/generate/utils.d.ts +144 -0
  179. package/dist/types/sync/common/generate/utils.d.ts.map +1 -0
  180. package/dist/types/sync/common/import/utils.d.ts +44 -0
  181. package/dist/types/sync/common/import/utils.d.ts.map +1 -0
  182. package/dist/types/sync/common/importProject.d.ts +15 -0
  183. package/dist/types/sync/common/importProject.d.ts.map +1 -0
  184. package/dist/types/sync/common/index.d.ts +8 -0
  185. package/dist/types/sync/common/index.d.ts.map +1 -0
  186. package/dist/types/sync/common/types.d.ts +350 -0
  187. package/dist/types/sync/common/types.d.ts.map +1 -0
  188. package/dist/types/sync/common/utils.d.ts +244 -0
  189. package/dist/types/sync/common/utils.d.ts.map +1 -0
  190. package/dist/types/sync/i18n.d.ts +3 -0
  191. package/dist/types/sync/i18n.d.ts.map +1 -0
  192. package/dist/types/sync/v2/application.d.ts +34 -0
  193. package/dist/types/sync/v2/application.d.ts.map +1 -0
  194. package/dist/types/sync/v2/export/controls/Action.d.ts +29 -0
  195. package/dist/types/sync/v2/export/controls/Action.d.ts.map +1 -0
  196. package/dist/types/sync/v2/export/controls/AnalyticalListPageChart.d.ts +10 -0
  197. package/dist/types/sync/v2/export/controls/AnalyticalListPageChart.d.ts.map +1 -0
  198. package/dist/types/sync/v2/export/controls/AnalyticalListPageKPI.d.ts +10 -0
  199. package/dist/types/sync/v2/export/controls/AnalyticalListPageKPI.d.ts.map +1 -0
  200. package/dist/types/sync/v2/export/controls/Card.d.ts +117 -0
  201. package/dist/types/sync/v2/export/controls/Card.d.ts.map +1 -0
  202. package/dist/types/sync/v2/export/controls/Field.d.ts +5 -0
  203. package/dist/types/sync/v2/export/controls/Field.d.ts.map +1 -0
  204. package/dist/types/sync/v2/export/controls/FilterBar.d.ts +35 -0
  205. package/dist/types/sync/v2/export/controls/FilterBar.d.ts.map +1 -0
  206. package/dist/types/sync/v2/export/controls/FormAction.d.ts +16 -0
  207. package/dist/types/sync/v2/export/controls/FormAction.d.ts.map +1 -0
  208. package/dist/types/sync/v2/export/controls/Fragment.d.ts +43 -0
  209. package/dist/types/sync/v2/export/controls/Fragment.d.ts.map +1 -0
  210. package/dist/types/sync/v2/export/controls/ObjectPageChart.d.ts +8 -0
  211. package/dist/types/sync/v2/export/controls/ObjectPageChart.d.ts.map +1 -0
  212. package/dist/types/sync/v2/export/controls/ObjectPageCustomSection.d.ts +20 -0
  213. package/dist/types/sync/v2/export/controls/ObjectPageCustomSection.d.ts.map +1 -0
  214. package/dist/types/sync/v2/export/controls/ObjectPageFooterAction.d.ts +9 -0
  215. package/dist/types/sync/v2/export/controls/ObjectPageFooterAction.d.ts.map +1 -0
  216. package/dist/types/sync/v2/export/controls/ObjectPageHeader.d.ts +9 -0
  217. package/dist/types/sync/v2/export/controls/ObjectPageHeader.d.ts.map +1 -0
  218. package/dist/types/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +9 -0
  219. package/dist/types/sync/v2/export/controls/ObjectPageHeaderAction.d.ts.map +1 -0
  220. package/dist/types/sync/v2/export/controls/ObjectPageLayout.d.ts +8 -0
  221. package/dist/types/sync/v2/export/controls/ObjectPageLayout.d.ts.map +1 -0
  222. package/dist/types/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +45 -0
  223. package/dist/types/sync/v2/export/controls/ObjectPageSectionsV2.d.ts.map +1 -0
  224. package/dist/types/sync/v2/export/controls/ObjectPageTable.d.ts +50 -0
  225. package/dist/types/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -0
  226. package/dist/types/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +9 -0
  227. package/dist/types/sync/v2/export/controls/ObjectPageToolBarAction.d.ts.map +1 -0
  228. package/dist/types/sync/v2/export/controls/Table.d.ts +95 -0
  229. package/dist/types/sync/v2/export/controls/Table.d.ts.map +1 -0
  230. package/dist/types/sync/v2/export/controls/TableColumn.d.ts +39 -0
  231. package/dist/types/sync/v2/export/controls/TableColumn.d.ts.map +1 -0
  232. package/dist/types/sync/v2/export/controls/ToolBar.d.ts +5 -0
  233. package/dist/types/sync/v2/export/controls/ToolBar.d.ts.map +1 -0
  234. package/dist/types/sync/v2/export/controls/index.d.ts +21 -0
  235. package/dist/types/sync/v2/export/controls/index.d.ts.map +1 -0
  236. package/dist/types/sync/v2/export/export.d.ts +36 -0
  237. package/dist/types/sync/v2/export/export.d.ts.map +1 -0
  238. package/dist/types/sync/v2/export/exportPage.d.ts +11 -0
  239. package/dist/types/sync/v2/export/exportPage.d.ts.map +1 -0
  240. package/dist/types/sync/v2/export/factory.d.ts +9 -0
  241. package/dist/types/sync/v2/export/factory.d.ts.map +1 -0
  242. package/dist/types/sync/v2/export/manifest.d.ts +27 -0
  243. package/dist/types/sync/v2/export/manifest.d.ts.map +1 -0
  244. package/dist/types/sync/v2/export/pages/AnalyticalListPage.d.ts +15 -0
  245. package/dist/types/sync/v2/export/pages/AnalyticalListPage.d.ts.map +1 -0
  246. package/dist/types/sync/v2/export/pages/ListReport.d.ts +11 -0
  247. package/dist/types/sync/v2/export/pages/ListReport.d.ts.map +1 -0
  248. package/dist/types/sync/v2/export/pages/ObjectPage.d.ts +19 -0
  249. package/dist/types/sync/v2/export/pages/ObjectPage.d.ts.map +1 -0
  250. package/dist/types/sync/v2/export/pages/OverviewPage.d.ts +29 -0
  251. package/dist/types/sync/v2/export/pages/OverviewPage.d.ts.map +1 -0
  252. package/dist/types/sync/v2/export/pages/index.d.ts +5 -0
  253. package/dist/types/sync/v2/export/pages/index.d.ts.map +1 -0
  254. package/dist/types/sync/v2/export/view-controller-generator.d.ts +69 -0
  255. package/dist/types/sync/v2/export/view-controller-generator.d.ts.map +1 -0
  256. package/dist/types/sync/v2/generate/analyticalListReport.d.ts +10 -0
  257. package/dist/types/sync/v2/generate/analyticalListReport.d.ts.map +1 -0
  258. package/dist/types/sync/v2/generate/generate.d.ts +54 -0
  259. package/dist/types/sync/v2/generate/generate.d.ts.map +1 -0
  260. package/dist/types/sync/v2/generate/index.d.ts +5 -0
  261. package/dist/types/sync/v2/generate/index.d.ts.map +1 -0
  262. package/dist/types/sync/v2/generate/listReport.d.ts +22 -0
  263. package/dist/types/sync/v2/generate/listReport.d.ts.map +1 -0
  264. package/dist/types/sync/v2/generate/objectPage.d.ts +11 -0
  265. package/dist/types/sync/v2/generate/objectPage.d.ts.map +1 -0
  266. package/dist/types/sync/v2/generate/overviewPage.d.ts +25 -0
  267. package/dist/types/sync/v2/generate/overviewPage.d.ts.map +1 -0
  268. package/dist/types/sync/v2/generate/utils.d.ts +91 -0
  269. package/dist/types/sync/v2/generate/utils.d.ts.map +1 -0
  270. package/dist/types/sync/v2/import/app/appProvider.d.ts +19 -0
  271. package/dist/types/sync/v2/import/app/appProvider.d.ts.map +1 -0
  272. package/dist/types/sync/v2/import/app/ovpProvider.d.ts +8 -0
  273. package/dist/types/sync/v2/import/app/ovpProvider.d.ts.map +1 -0
  274. package/dist/types/sync/v2/import/common/index.d.ts +53 -0
  275. package/dist/types/sync/v2/import/common/index.d.ts.map +1 -0
  276. package/dist/types/sync/v2/import/controls/table.d.ts +16 -0
  277. package/dist/types/sync/v2/import/controls/table.d.ts.map +1 -0
  278. package/dist/types/sync/v2/import/getPageType.d.ts +1 -0
  279. package/dist/types/sync/v2/import/getPageType.d.ts.map +1 -0
  280. package/dist/types/sync/v2/import/index.d.ts +6 -0
  281. package/dist/types/sync/v2/import/index.d.ts.map +1 -0
  282. package/dist/types/sync/v2/import/pages/analyticalListPage.d.ts +10 -0
  283. package/dist/types/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -0
  284. package/dist/types/sync/v2/import/pages/listReport.d.ts +10 -0
  285. package/dist/types/sync/v2/import/pages/listReport.d.ts.map +1 -0
  286. package/dist/types/sync/v2/import/pages/objectPage.d.ts +9 -0
  287. package/dist/types/sync/v2/import/pages/objectPage.d.ts.map +1 -0
  288. package/dist/types/sync/v2/import/pages/overviewPage.d.ts +11 -0
  289. package/dist/types/sync/v2/import/pages/overviewPage.d.ts.map +1 -0
  290. package/dist/types/sync/v2/import/utils.d.ts +44 -0
  291. package/dist/types/sync/v2/import/utils.d.ts.map +1 -0
  292. package/dist/types/sync/v2/types.d.ts +70 -0
  293. package/dist/types/sync/v2/types.d.ts.map +1 -0
  294. package/dist/types/sync/v4/application.d.ts +45 -0
  295. package/dist/types/sync/v4/application.d.ts.map +1 -0
  296. package/dist/types/sync/v4/export/controls/FilterBar.d.ts +5 -0
  297. package/dist/types/sync/v4/export/controls/FilterBar.d.ts.map +1 -0
  298. package/dist/types/sync/v4/export/controls/ObjectPageCustomSection.d.ts +13 -0
  299. package/dist/types/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -0
  300. package/dist/types/sync/v4/export/controls/ObjectPageHeader.d.ts +9 -0
  301. package/dist/types/sync/v4/export/controls/ObjectPageHeader.d.ts.map +1 -0
  302. package/dist/types/sync/v4/export/controls/ObjectPageHeaderSection.d.ts +22 -0
  303. package/dist/types/sync/v4/export/controls/ObjectPageHeaderSection.d.ts.map +1 -0
  304. package/dist/types/sync/v4/export/controls/ObjectPageLayout.d.ts +5 -0
  305. package/dist/types/sync/v4/export/controls/ObjectPageLayout.d.ts.map +1 -0
  306. package/dist/types/sync/v4/export/controls/ObjectPageTable.d.ts +23 -0
  307. package/dist/types/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -0
  308. package/dist/types/sync/v4/export/controls/ObjectPageTableColumn.d.ts +13 -0
  309. package/dist/types/sync/v4/export/controls/ObjectPageTableColumn.d.ts.map +1 -0
  310. package/dist/types/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +5 -0
  311. package/dist/types/sync/v4/export/controls/ObjectPageToolBarAction.d.ts.map +1 -0
  312. package/dist/types/sync/v4/export/controls/Table.d.ts +143 -0
  313. package/dist/types/sync/v4/export/controls/Table.d.ts.map +1 -0
  314. package/dist/types/sync/v4/export/controls/TableColumn.d.ts +64 -0
  315. package/dist/types/sync/v4/export/controls/TableColumn.d.ts.map +1 -0
  316. package/dist/types/sync/v4/export/controls/ToolBar.d.ts +9 -0
  317. package/dist/types/sync/v4/export/controls/ToolBar.d.ts.map +1 -0
  318. package/dist/types/sync/v4/export/controls/ToolBarAction.d.ts +8 -0
  319. package/dist/types/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -0
  320. package/dist/types/sync/v4/export/controls/index.d.ts +13 -0
  321. package/dist/types/sync/v4/export/controls/index.d.ts.map +1 -0
  322. package/dist/types/sync/v4/export/export.d.ts +14 -0
  323. package/dist/types/sync/v4/export/export.d.ts.map +1 -0
  324. package/dist/types/sync/v4/export/factory.d.ts +9 -0
  325. package/dist/types/sync/v4/export/factory.d.ts.map +1 -0
  326. package/dist/types/sync/v4/export/flexibleColumnLayout.d.ts +8 -0
  327. package/dist/types/sync/v4/export/flexibleColumnLayout.d.ts.map +1 -0
  328. package/dist/types/sync/v4/export/manifest.d.ts +12 -0
  329. package/dist/types/sync/v4/export/manifest.d.ts.map +1 -0
  330. package/dist/types/sync/v4/export/pages/FreestylePage.d.ts +6 -0
  331. package/dist/types/sync/v4/export/pages/FreestylePage.d.ts.map +1 -0
  332. package/dist/types/sync/v4/export/pages/ListReport.d.ts +14 -0
  333. package/dist/types/sync/v4/export/pages/ListReport.d.ts.map +1 -0
  334. package/dist/types/sync/v4/export/pages/ObjectPage.d.ts +9 -0
  335. package/dist/types/sync/v4/export/pages/ObjectPage.d.ts.map +1 -0
  336. package/dist/types/sync/v4/export/pages/index.d.ts +4 -0
  337. package/dist/types/sync/v4/export/pages/index.d.ts.map +1 -0
  338. package/dist/types/sync/v4/export/types.d.ts +29 -0
  339. package/dist/types/sync/v4/export/types.d.ts.map +1 -0
  340. package/dist/types/sync/v4/export/utils.d.ts +15 -0
  341. package/dist/types/sync/v4/export/utils.d.ts.map +1 -0
  342. package/dist/types/sync/v4/generate/freestylePage.d.ts +11 -0
  343. package/dist/types/sync/v4/generate/freestylePage.d.ts.map +1 -0
  344. package/dist/types/sync/v4/generate/generate.d.ts +43 -0
  345. package/dist/types/sync/v4/generate/generate.d.ts.map +1 -0
  346. package/dist/types/sync/v4/generate/index.d.ts +5 -0
  347. package/dist/types/sync/v4/generate/index.d.ts.map +1 -0
  348. package/dist/types/sync/v4/generate/listReport.d.ts +14 -0
  349. package/dist/types/sync/v4/generate/listReport.d.ts.map +1 -0
  350. package/dist/types/sync/v4/generate/objectPage.d.ts +12 -0
  351. package/dist/types/sync/v4/generate/objectPage.d.ts.map +1 -0
  352. package/dist/types/sync/v4/import/app/appProvider.d.ts +8 -0
  353. package/dist/types/sync/v4/import/app/appProvider.d.ts.map +1 -0
  354. package/dist/types/sync/v4/import/app/baseAppProvider.d.ts +46 -0
  355. package/dist/types/sync/v4/import/app/baseAppProvider.d.ts.map +1 -0
  356. package/dist/types/sync/v4/import/app/freestyleProvider.d.ts +8 -0
  357. package/dist/types/sync/v4/import/app/freestyleProvider.d.ts.map +1 -0
  358. package/dist/types/sync/v4/import/app/index.d.ts +4 -0
  359. package/dist/types/sync/v4/import/app/index.d.ts.map +1 -0
  360. package/dist/types/sync/v4/import/fragment.d.ts +26 -0
  361. package/dist/types/sync/v4/import/fragment.d.ts.map +1 -0
  362. package/dist/types/sync/v4/import/index.d.ts +3 -0
  363. package/dist/types/sync/v4/import/index.d.ts.map +1 -0
  364. package/dist/types/sync/v4/import/pages/listReport.d.ts +22 -0
  365. package/dist/types/sync/v4/import/pages/listReport.d.ts.map +1 -0
  366. package/dist/types/sync/v4/import/pages/objectPage.d.ts +24 -0
  367. package/dist/types/sync/v4/import/pages/objectPage.d.ts.map +1 -0
  368. package/dist/types/sync/v4/import/utils.d.ts +16 -0
  369. package/dist/types/sync/v4/import/utils.d.ts.map +1 -0
  370. package/dist/types/sync/v4/types.d.ts +7 -0
  371. package/dist/types/sync/v4/types.d.ts.map +1 -0
  372. package/dist/types/sync/v4/utils/StableIdHelper.d.ts +5 -0
  373. package/dist/types/sync/v4/utils/StableIdHelper.d.ts.map +1 -0
  374. package/dist/types/sync/v4/utils/utils.d.ts +44 -0
  375. package/dist/types/sync/v4/utils/utils.d.ts.map +1 -0
  376. package/dist/types/v2.d.ts +3 -0
  377. package/dist/types/v2.d.ts.map +1 -0
  378. package/dist/types/v4.d.ts +3 -0
  379. package/dist/types/v4.d.ts.map +1 -0
  380. package/package.json +28 -31
  381. package/dist/documentation/runDocu-min.js.LICENSE.txt +0 -24
  382. package/dist/index-min.js.LICENSE.txt +0 -26
  383. package/dist/scripts/extractDocu.d.ts +0 -1
  384. package/dist/scripts/extractDocu.js +0 -488
  385. package/dist/scripts/extractDocu.js.map +0 -1
  386. package/dist/scripts/runDocu.d.ts +0 -1
  387. package/dist/scripts/runDocu.js +0 -570
  388. package/dist/scripts/runDocu.js.map +0 -1
  389. package/dist/scripts/spec.d.ts +0 -1
  390. package/dist/scripts/spec.js +0 -114
  391. package/dist/scripts/spec.js.map +0 -1
  392. package/dist/scripts/to-json-schema.d.ts +0 -10
  393. package/dist/scripts/to-json-schema.js +0 -124
  394. package/dist/scripts/to-json-schema.js.map +0 -1
  395. package/dist/specification/v2/index-min.js +0 -1
  396. package/dist/specification/v4/index-min.js +0 -1
  397. package/dist/src/api.d.ts +0 -41
  398. package/dist/src/api.js +0 -167
  399. package/dist/src/api.js.map +0 -1
  400. package/dist/src/apiTypes.d.ts +0 -307
  401. package/dist/src/apiTypes.js +0 -3
  402. package/dist/src/apiTypes.js.map +0 -1
  403. package/dist/src/extensionLogger.d.ts +0 -41
  404. package/dist/src/extensionLogger.js +0 -39
  405. package/dist/src/extensionLogger.js.map +0 -1
  406. package/dist/src/i18n/i18n.d.ts +0 -1
  407. package/dist/src/i18n/i18n.js +0 -25
  408. package/dist/src/i18n/i18n.js.map +0 -1
  409. package/dist/src/index.d.ts +0 -7
  410. package/dist/src/index.js +0 -12
  411. package/dist/src/index.js.map +0 -1
  412. package/dist/src/project.d.ts +0 -17
  413. package/dist/src/project.js +0 -151
  414. package/dist/src/project.js.map +0 -1
  415. package/dist/src/specification/common/Application.d.ts +0 -36
  416. package/dist/src/specification/common/Application.js +0 -3
  417. package/dist/src/specification/common/Application.js.map +0 -1
  418. package/dist/src/specification/common/i18n.json +0 -1
  419. package/dist/src/specification/common/index.d.ts +0 -5
  420. package/dist/src/specification/common/index.js +0 -10
  421. package/dist/src/specification/common/index.js.map +0 -1
  422. package/dist/src/specification/common/page.d.ts +0 -47
  423. package/dist/src/specification/common/page.js +0 -33
  424. package/dist/src/specification/common/page.js.map +0 -1
  425. package/dist/src/specification/common/types.d.ts +0 -16
  426. package/dist/src/specification/common/types.js +0 -20
  427. package/dist/src/specification/common/types.js.map +0 -1
  428. package/dist/src/specification/common/webapp/manifest/Manifest.d.ts +0 -49
  429. package/dist/src/specification/common/webapp/manifest/Manifest.js +0 -17
  430. package/dist/src/specification/common/webapp/manifest/Manifest.js.map +0 -1
  431. package/dist/src/specification/common/webapp/manifest/index.d.ts +0 -3
  432. package/dist/src/specification/common/webapp/manifest/index.js +0 -8
  433. package/dist/src/specification/common/webapp/manifest/index.js.map +0 -1
  434. package/dist/src/specification/common/webapp/manifest/sapOvp.d.ts +0 -375
  435. package/dist/src/specification/common/webapp/manifest/sapOvp.js +0 -9
  436. package/dist/src/specification/common/webapp/manifest/sapOvp.js.map +0 -1
  437. package/dist/src/specification/common/webapp/manifest/sapUi5.d.ts +0 -33
  438. package/dist/src/specification/common/webapp/manifest/sapUi5.js +0 -14
  439. package/dist/src/specification/common/webapp/manifest/sapUi5.js.map +0 -1
  440. package/dist/src/specification/schemaAccess.d.ts +0 -17
  441. package/dist/src/specification/schemaAccess.js +0 -62
  442. package/dist/src/specification/schemaAccess.js.map +0 -1
  443. package/dist/src/specification/v2/ApplicationV2.d.ts +0 -25
  444. package/dist/src/specification/v2/ApplicationV2.js +0 -9
  445. package/dist/src/specification/v2/ApplicationV2.js.map +0 -1
  446. package/dist/src/specification/v2/controls/Action.d.ts +0 -87
  447. package/dist/src/specification/v2/controls/Action.js +0 -20
  448. package/dist/src/specification/v2/controls/Action.js.map +0 -1
  449. package/dist/src/specification/v2/controls/AnalyticalListPageChart.d.ts +0 -58
  450. package/dist/src/specification/v2/controls/AnalyticalListPageChart.js +0 -36
  451. package/dist/src/specification/v2/controls/AnalyticalListPageChart.js.map +0 -1
  452. package/dist/src/specification/v2/controls/AnalyticalListPageKPI.d.ts +0 -30
  453. package/dist/src/specification/v2/controls/AnalyticalListPageKPI.js +0 -3
  454. package/dist/src/specification/v2/controls/AnalyticalListPageKPI.js.map +0 -1
  455. package/dist/src/specification/v2/controls/Card.d.ts +0 -655
  456. package/dist/src/specification/v2/controls/Card.js +0 -70
  457. package/dist/src/specification/v2/controls/Card.js.map +0 -1
  458. package/dist/src/specification/v2/controls/Facets.d.ts +0 -17
  459. package/dist/src/specification/v2/controls/Facets.js +0 -3
  460. package/dist/src/specification/v2/controls/Facets.js.map +0 -1
  461. package/dist/src/specification/v2/controls/Field.d.ts +0 -10
  462. package/dist/src/specification/v2/controls/Field.js +0 -3
  463. package/dist/src/specification/v2/controls/Field.js.map +0 -1
  464. package/dist/src/specification/v2/controls/FilterBar.d.ts +0 -195
  465. package/dist/src/specification/v2/controls/FilterBar.js +0 -54
  466. package/dist/src/specification/v2/controls/FilterBar.js.map +0 -1
  467. package/dist/src/specification/v2/controls/Footer.d.ts +0 -20
  468. package/dist/src/specification/v2/controls/Footer.js +0 -3
  469. package/dist/src/specification/v2/controls/Footer.js.map +0 -1
  470. package/dist/src/specification/v2/controls/ObjectPageChart.d.ts +0 -16
  471. package/dist/src/specification/v2/controls/ObjectPageChart.js +0 -3
  472. package/dist/src/specification/v2/controls/ObjectPageChart.js.map +0 -1
  473. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +0 -15
  474. package/dist/src/specification/v2/controls/ObjectPageForm.js +0 -3
  475. package/dist/src/specification/v2/controls/ObjectPageForm.js.map +0 -1
  476. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +0 -34
  477. package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -8
  478. package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +0 -1
  479. package/dist/src/specification/v2/controls/ObjectPageLayout.d.ts +0 -22
  480. package/dist/src/specification/v2/controls/ObjectPageLayout.js +0 -3
  481. package/dist/src/specification/v2/controls/ObjectPageLayout.js.map +0 -1
  482. package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +0 -120
  483. package/dist/src/specification/v2/controls/ObjectPageSection.js +0 -13
  484. package/dist/src/specification/v2/controls/ObjectPageSection.js.map +0 -1
  485. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +0 -183
  486. package/dist/src/specification/v2/controls/ObjectPageTable.js +0 -7
  487. package/dist/src/specification/v2/controls/ObjectPageTable.js.map +0 -1
  488. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +0 -15
  489. package/dist/src/specification/v2/controls/ObjectPageToolBar.js +0 -3
  490. package/dist/src/specification/v2/controls/ObjectPageToolBar.js.map +0 -1
  491. package/dist/src/specification/v2/controls/Table.d.ts +0 -494
  492. package/dist/src/specification/v2/controls/Table.js +0 -62
  493. package/dist/src/specification/v2/controls/Table.js.map +0 -1
  494. package/dist/src/specification/v2/controls/ToolBar.d.ts +0 -8
  495. package/dist/src/specification/v2/controls/ToolBar.js +0 -3
  496. package/dist/src/specification/v2/controls/ToolBar.js.map +0 -1
  497. package/dist/src/specification/v2/controls/index.d.ts +0 -17
  498. package/dist/src/specification/v2/controls/index.js +0 -14
  499. package/dist/src/specification/v2/controls/index.js.map +0 -1
  500. package/dist/src/specification/v2/index.d.ts +0 -5
  501. package/dist/src/specification/v2/index.js +0 -10
  502. package/dist/src/specification/v2/index.js.map +0 -1
  503. package/dist/src/specification/v2/page.d.ts +0 -7
  504. package/dist/src/specification/v2/page.js +0 -3
  505. package/dist/src/specification/v2/page.js.map +0 -1
  506. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +0 -21
  507. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.js +0 -3
  508. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.js.map +0 -1
  509. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +0 -12
  510. package/dist/src/specification/v2/pages/ListReportConfig.js +0 -3
  511. package/dist/src/specification/v2/pages/ListReportConfig.js.map +0 -1
  512. package/dist/src/specification/v2/pages/ObjectPageConfig.d.ts +0 -33
  513. package/dist/src/specification/v2/pages/ObjectPageConfig.js +0 -3
  514. package/dist/src/specification/v2/pages/ObjectPageConfig.js.map +0 -1
  515. package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +0 -127
  516. package/dist/src/specification/v2/pages/OverviewPageConfig.js +0 -8
  517. package/dist/src/specification/v2/pages/OverviewPageConfig.js.map +0 -1
  518. package/dist/src/specification/v2/pages/index.d.ts +0 -4
  519. package/dist/src/specification/v2/pages/index.js +0 -7
  520. package/dist/src/specification/v2/pages/index.js.map +0 -1
  521. package/dist/src/specification/v2/webapp/index.d.ts +0 -1
  522. package/dist/src/specification/v2/webapp/index.js +0 -7
  523. package/dist/src/specification/v2/webapp/index.js.map +0 -1
  524. package/dist/src/specification/v2/webapp/manifest/index.d.ts +0 -2
  525. package/dist/src/specification/v2/webapp/manifest/index.js +0 -8
  526. package/dist/src/specification/v2/webapp/manifest/index.js.map +0 -1
  527. package/dist/src/specification/v2/webapp/manifest/sapUi.d.ts +0 -10
  528. package/dist/src/specification/v2/webapp/manifest/sapUi.js +0 -3
  529. package/dist/src/specification/v2/webapp/manifest/sapUi.js.map +0 -1
  530. package/dist/src/specification/v2/webapp/manifest/sapUi5.d.ts +0 -98
  531. package/dist/src/specification/v2/webapp/manifest/sapUi5.js +0 -9
  532. package/dist/src/specification/v2/webapp/manifest/sapUi5.js.map +0 -1
  533. package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.d.ts +0 -31
  534. package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.js +0 -7
  535. package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.js.map +0 -1
  536. package/dist/src/specification/v4/ApplicationV4.d.ts +0 -27
  537. package/dist/src/specification/v4/ApplicationV4.js +0 -3
  538. package/dist/src/specification/v4/ApplicationV4.js.map +0 -1
  539. package/dist/src/specification/v4/controls/FilterBar.d.ts +0 -18
  540. package/dist/src/specification/v4/controls/FilterBar.js +0 -3
  541. package/dist/src/specification/v4/controls/FilterBar.js.map +0 -1
  542. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +0 -11
  543. package/dist/src/specification/v4/controls/ObjectPageFooter.js +0 -3
  544. package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +0 -1
  545. package/dist/src/specification/v4/controls/ObjectPageHeader.d.ts +0 -29
  546. package/dist/src/specification/v4/controls/ObjectPageHeader.js +0 -3
  547. package/dist/src/specification/v4/controls/ObjectPageHeader.js.map +0 -1
  548. package/dist/src/specification/v4/controls/ObjectPageHeaderSection.d.ts +0 -46
  549. package/dist/src/specification/v4/controls/ObjectPageHeaderSection.js +0 -7
  550. package/dist/src/specification/v4/controls/ObjectPageHeaderSection.js.map +0 -1
  551. package/dist/src/specification/v4/controls/ObjectPageLayout.d.ts +0 -14
  552. package/dist/src/specification/v4/controls/ObjectPageLayout.js +0 -8
  553. package/dist/src/specification/v4/controls/ObjectPageLayout.js.map +0 -1
  554. package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +0 -98
  555. package/dist/src/specification/v4/controls/ObjectPageSection.js +0 -12
  556. package/dist/src/specification/v4/controls/ObjectPageSection.js.map +0 -1
  557. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +0 -70
  558. package/dist/src/specification/v4/controls/ObjectPageTable.js +0 -3
  559. package/dist/src/specification/v4/controls/ObjectPageTable.js.map +0 -1
  560. package/dist/src/specification/v4/controls/ObjectPageToolBar.d.ts +0 -25
  561. package/dist/src/specification/v4/controls/ObjectPageToolBar.js +0 -3
  562. package/dist/src/specification/v4/controls/ObjectPageToolBar.js.map +0 -1
  563. package/dist/src/specification/v4/controls/Table.d.ts +0 -257
  564. package/dist/src/specification/v4/controls/Table.js +0 -30
  565. package/dist/src/specification/v4/controls/Table.js.map +0 -1
  566. package/dist/src/specification/v4/controls/ToolBar.d.ts +0 -53
  567. package/dist/src/specification/v4/controls/ToolBar.js +0 -8
  568. package/dist/src/specification/v4/controls/ToolBar.js.map +0 -1
  569. package/dist/src/specification/v4/controls/index.d.ts +0 -10
  570. package/dist/src/specification/v4/controls/index.js +0 -11
  571. package/dist/src/specification/v4/controls/index.js.map +0 -1
  572. package/dist/src/specification/v4/index.d.ts +0 -5
  573. package/dist/src/specification/v4/index.js +0 -9
  574. package/dist/src/specification/v4/index.js.map +0 -1
  575. package/dist/src/specification/v4/page.d.ts +0 -19
  576. package/dist/src/specification/v4/page.js +0 -3
  577. package/dist/src/specification/v4/page.js.map +0 -1
  578. package/dist/src/specification/v4/pages/ListReportConfig.d.ts +0 -36
  579. package/dist/src/specification/v4/pages/ListReportConfig.js +0 -9
  580. package/dist/src/specification/v4/pages/ListReportConfig.js.map +0 -1
  581. package/dist/src/specification/v4/pages/ObjectPageConfig.d.ts +0 -18
  582. package/dist/src/specification/v4/pages/ObjectPageConfig.js +0 -8
  583. package/dist/src/specification/v4/pages/ObjectPageConfig.js.map +0 -1
  584. package/dist/src/specification/v4/pages/index.d.ts +0 -2
  585. package/dist/src/specification/v4/pages/index.js +0 -8
  586. package/dist/src/specification/v4/pages/index.js.map +0 -1
  587. package/dist/src/specification/v4/webapp/index.d.ts +0 -1
  588. package/dist/src/specification/v4/webapp/index.js +0 -7
  589. package/dist/src/specification/v4/webapp/index.js.map +0 -1
  590. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +0 -224
  591. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +0 -22
  592. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +0 -1
  593. package/dist/src/specification/v4/webapp/manifest/index.d.ts +0 -4
  594. package/dist/src/specification/v4/webapp/manifest/index.js +0 -10
  595. package/dist/src/specification/v4/webapp/manifest/index.js.map +0 -1
  596. package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +0 -97
  597. package/dist/src/specification/v4/webapp/manifest/sapUi5.js +0 -11
  598. package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +0 -1
  599. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.d.ts +0 -82
  600. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js +0 -14
  601. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js.map +0 -1
  602. package/dist/src/sync/common/appProvider.d.ts +0 -27
  603. package/dist/src/sync/common/appProvider.js +0 -57
  604. package/dist/src/sync/common/appProvider.js.map +0 -1
  605. package/dist/src/sync/common/decoration/control.d.ts +0 -50
  606. package/dist/src/sync/common/decoration/control.js +0 -211
  607. package/dist/src/sync/common/decoration/control.js.map +0 -1
  608. package/dist/src/sync/common/decoration/decorators.d.ts +0 -12
  609. package/dist/src/sync/common/decoration/decorators.js +0 -45
  610. package/dist/src/sync/common/decoration/decorators.js.map +0 -1
  611. package/dist/src/sync/common/decoration/factory.d.ts +0 -40
  612. package/dist/src/sync/common/decoration/factory.js +0 -48
  613. package/dist/src/sync/common/decoration/factory.js.map +0 -1
  614. package/dist/src/sync/common/decoration/flex.d.ts +0 -6
  615. package/dist/src/sync/common/decoration/flex.js +0 -8
  616. package/dist/src/sync/common/decoration/flex.js.map +0 -1
  617. package/dist/src/sync/common/decoration/index.d.ts +0 -3
  618. package/dist/src/sync/common/decoration/index.js +0 -9
  619. package/dist/src/sync/common/decoration/index.js.map +0 -1
  620. package/dist/src/sync/common/flexUtils.d.ts +0 -31
  621. package/dist/src/sync/common/flexUtils.js +0 -94
  622. package/dist/src/sync/common/flexUtils.js.map +0 -1
  623. package/dist/src/sync/common/generate/index.d.ts +0 -2
  624. package/dist/src/sync/common/generate/index.js +0 -8
  625. package/dist/src/sync/common/generate/index.js.map +0 -1
  626. package/dist/src/sync/common/generate/objectPage.d.ts +0 -59
  627. package/dist/src/sync/common/generate/objectPage.js +0 -378
  628. package/dist/src/sync/common/generate/objectPage.js.map +0 -1
  629. package/dist/src/sync/common/generate/utils.d.ts +0 -143
  630. package/dist/src/sync/common/generate/utils.js +0 -415
  631. package/dist/src/sync/common/generate/utils.js.map +0 -1
  632. package/dist/src/sync/common/i18n.json +0 -23
  633. package/dist/src/sync/common/import/utils.d.ts +0 -43
  634. package/dist/src/sync/common/import/utils.js +0 -106
  635. package/dist/src/sync/common/import/utils.js.map +0 -1
  636. package/dist/src/sync/common/importProject.d.ts +0 -14
  637. package/dist/src/sync/common/importProject.js +0 -334
  638. package/dist/src/sync/common/importProject.js.map +0 -1
  639. package/dist/src/sync/common/index.d.ts +0 -7
  640. package/dist/src/sync/common/index.js +0 -15
  641. package/dist/src/sync/common/index.js.map +0 -1
  642. package/dist/src/sync/common/types.d.ts +0 -346
  643. package/dist/src/sync/common/types.js +0 -216
  644. package/dist/src/sync/common/types.js.map +0 -1
  645. package/dist/src/sync/common/utils.d.ts +0 -241
  646. package/dist/src/sync/common/utils.js +0 -1228
  647. package/dist/src/sync/common/utils.js.map +0 -1
  648. package/dist/src/sync/i18n.d.ts +0 -2
  649. package/dist/src/sync/i18n.js +0 -15
  650. package/dist/src/sync/i18n.js.map +0 -1
  651. package/dist/src/sync/v2/application.d.ts +0 -33
  652. package/dist/src/sync/v2/application.js +0 -170
  653. package/dist/src/sync/v2/application.js.map +0 -1
  654. package/dist/src/sync/v2/export/controls/Action.d.ts +0 -28
  655. package/dist/src/sync/v2/export/controls/Action.js +0 -127
  656. package/dist/src/sync/v2/export/controls/Action.js.map +0 -1
  657. package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.d.ts +0 -9
  658. package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js +0 -72
  659. package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js.map +0 -1
  660. package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.d.ts +0 -9
  661. package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js +0 -56
  662. package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js.map +0 -1
  663. package/dist/src/sync/v2/export/controls/Card.d.ts +0 -116
  664. package/dist/src/sync/v2/export/controls/Card.js +0 -655
  665. package/dist/src/sync/v2/export/controls/Card.js.map +0 -1
  666. package/dist/src/sync/v2/export/controls/Field.d.ts +0 -4
  667. package/dist/src/sync/v2/export/controls/Field.js +0 -32
  668. package/dist/src/sync/v2/export/controls/Field.js.map +0 -1
  669. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +0 -34
  670. package/dist/src/sync/v2/export/controls/FilterBar.js +0 -250
  671. package/dist/src/sync/v2/export/controls/FilterBar.js.map +0 -1
  672. package/dist/src/sync/v2/export/controls/FormAction.d.ts +0 -15
  673. package/dist/src/sync/v2/export/controls/FormAction.js +0 -134
  674. package/dist/src/sync/v2/export/controls/FormAction.js.map +0 -1
  675. package/dist/src/sync/v2/export/controls/Fragment.d.ts +0 -42
  676. package/dist/src/sync/v2/export/controls/Fragment.js +0 -571
  677. package/dist/src/sync/v2/export/controls/Fragment.js.map +0 -1
  678. package/dist/src/sync/v2/export/controls/ObjectPageChart.d.ts +0 -7
  679. package/dist/src/sync/v2/export/controls/ObjectPageChart.js +0 -37
  680. package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +0 -1
  681. package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.d.ts +0 -19
  682. package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js +0 -110
  683. package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +0 -1
  684. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +0 -8
  685. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +0 -62
  686. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +0 -1
  687. package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +0 -8
  688. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js +0 -60
  689. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +0 -1
  690. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +0 -8
  691. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +0 -62
  692. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +0 -1
  693. package/dist/src/sync/v2/export/controls/ObjectPageLayout.d.ts +0 -7
  694. package/dist/src/sync/v2/export/controls/ObjectPageLayout.js +0 -59
  695. package/dist/src/sync/v2/export/controls/ObjectPageLayout.js.map +0 -1
  696. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +0 -44
  697. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +0 -193
  698. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +0 -1
  699. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +0 -49
  700. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +0 -335
  701. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +0 -1
  702. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +0 -8
  703. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +0 -61
  704. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +0 -1
  705. package/dist/src/sync/v2/export/controls/Table.d.ts +0 -94
  706. package/dist/src/sync/v2/export/controls/Table.js +0 -709
  707. package/dist/src/sync/v2/export/controls/Table.js.map +0 -1
  708. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +0 -38
  709. package/dist/src/sync/v2/export/controls/TableColumn.js +0 -166
  710. package/dist/src/sync/v2/export/controls/TableColumn.js.map +0 -1
  711. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +0 -4
  712. package/dist/src/sync/v2/export/controls/ToolBar.js +0 -6
  713. package/dist/src/sync/v2/export/controls/ToolBar.js.map +0 -1
  714. package/dist/src/sync/v2/export/controls/index.d.ts +0 -20
  715. package/dist/src/sync/v2/export/controls/index.js +0 -26
  716. package/dist/src/sync/v2/export/controls/index.js.map +0 -1
  717. package/dist/src/sync/v2/export/export.d.ts +0 -35
  718. package/dist/src/sync/v2/export/export.js +0 -681
  719. package/dist/src/sync/v2/export/export.js.map +0 -1
  720. package/dist/src/sync/v2/export/exportPage.d.ts +0 -10
  721. package/dist/src/sync/v2/export/exportPage.js +0 -305
  722. package/dist/src/sync/v2/export/exportPage.js.map +0 -1
  723. package/dist/src/sync/v2/export/factory.d.ts +0 -8
  724. package/dist/src/sync/v2/export/factory.js +0 -59
  725. package/dist/src/sync/v2/export/factory.js.map +0 -1
  726. package/dist/src/sync/v2/export/manifest.d.ts +0 -26
  727. package/dist/src/sync/v2/export/manifest.js +0 -156
  728. package/dist/src/sync/v2/export/manifest.js.map +0 -1
  729. package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +0 -14
  730. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +0 -44
  731. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +0 -1
  732. package/dist/src/sync/v2/export/pages/ListReport.d.ts +0 -10
  733. package/dist/src/sync/v2/export/pages/ListReport.js +0 -41
  734. package/dist/src/sync/v2/export/pages/ListReport.js.map +0 -1
  735. package/dist/src/sync/v2/export/pages/ObjectPage.d.ts +0 -18
  736. package/dist/src/sync/v2/export/pages/ObjectPage.js +0 -100
  737. package/dist/src/sync/v2/export/pages/ObjectPage.js.map +0 -1
  738. package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +0 -28
  739. package/dist/src/sync/v2/export/pages/OverviewPage.js +0 -213
  740. package/dist/src/sync/v2/export/pages/OverviewPage.js.map +0 -1
  741. package/dist/src/sync/v2/export/pages/index.d.ts +0 -4
  742. package/dist/src/sync/v2/export/pages/index.js +0 -10
  743. package/dist/src/sync/v2/export/pages/index.js.map +0 -1
  744. package/dist/src/sync/v2/export/view-controller-generator.d.ts +0 -68
  745. package/dist/src/sync/v2/export/view-controller-generator.js +0 -141
  746. package/dist/src/sync/v2/export/view-controller-generator.js.map +0 -1
  747. package/dist/src/sync/v2/generate/analyticalListReport.d.ts +0 -9
  748. package/dist/src/sync/v2/generate/analyticalListReport.js +0 -86
  749. package/dist/src/sync/v2/generate/analyticalListReport.js.map +0 -1
  750. package/dist/src/sync/v2/generate/generate.d.ts +0 -53
  751. package/dist/src/sync/v2/generate/generate.js +0 -99
  752. package/dist/src/sync/v2/generate/generate.js.map +0 -1
  753. package/dist/src/sync/v2/generate/index.d.ts +0 -4
  754. package/dist/src/sync/v2/generate/index.js +0 -14
  755. package/dist/src/sync/v2/generate/index.js.map +0 -1
  756. package/dist/src/sync/v2/generate/listReport.d.ts +0 -21
  757. package/dist/src/sync/v2/generate/listReport.js +0 -123
  758. package/dist/src/sync/v2/generate/listReport.js.map +0 -1
  759. package/dist/src/sync/v2/generate/objectPage.d.ts +0 -10
  760. package/dist/src/sync/v2/generate/objectPage.js +0 -545
  761. package/dist/src/sync/v2/generate/objectPage.js.map +0 -1
  762. package/dist/src/sync/v2/generate/overviewPage.d.ts +0 -24
  763. package/dist/src/sync/v2/generate/overviewPage.js +0 -70
  764. package/dist/src/sync/v2/generate/overviewPage.js.map +0 -1
  765. package/dist/src/sync/v2/generate/utils.d.ts +0 -90
  766. package/dist/src/sync/v2/generate/utils.js +0 -530
  767. package/dist/src/sync/v2/generate/utils.js.map +0 -1
  768. package/dist/src/sync/v2/import/app/appProvider.d.ts +0 -18
  769. package/dist/src/sync/v2/import/app/appProvider.js +0 -145
  770. package/dist/src/sync/v2/import/app/appProvider.js.map +0 -1
  771. package/dist/src/sync/v2/import/app/ovpProvider.d.ts +0 -7
  772. package/dist/src/sync/v2/import/app/ovpProvider.js +0 -33
  773. package/dist/src/sync/v2/import/app/ovpProvider.js.map +0 -1
  774. package/dist/src/sync/v2/import/common/index.d.ts +0 -52
  775. package/dist/src/sync/v2/import/common/index.js +0 -415
  776. package/dist/src/sync/v2/import/common/index.js.map +0 -1
  777. package/dist/src/sync/v2/import/controls/table.d.ts +0 -15
  778. package/dist/src/sync/v2/import/controls/table.js +0 -32
  779. package/dist/src/sync/v2/import/controls/table.js.map +0 -1
  780. package/dist/src/sync/v2/import/getPageType.d.ts +0 -0
  781. package/dist/src/sync/v2/import/getPageType.js +0 -1
  782. package/dist/src/sync/v2/import/getPageType.js.map +0 -1
  783. package/dist/src/sync/v2/import/index.d.ts +0 -5
  784. package/dist/src/sync/v2/import/index.js +0 -11
  785. package/dist/src/sync/v2/import/index.js.map +0 -1
  786. package/dist/src/sync/v2/import/pages/analyticalListPage.d.ts +0 -9
  787. package/dist/src/sync/v2/import/pages/analyticalListPage.js +0 -128
  788. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +0 -1
  789. package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -9
  790. package/dist/src/sync/v2/import/pages/listReport.js +0 -156
  791. package/dist/src/sync/v2/import/pages/listReport.js.map +0 -1
  792. package/dist/src/sync/v2/import/pages/objectPage.d.ts +0 -8
  793. package/dist/src/sync/v2/import/pages/objectPage.js +0 -747
  794. package/dist/src/sync/v2/import/pages/objectPage.js.map +0 -1
  795. package/dist/src/sync/v2/import/pages/overviewPage.d.ts +0 -10
  796. package/dist/src/sync/v2/import/pages/overviewPage.js +0 -113
  797. package/dist/src/sync/v2/import/pages/overviewPage.js.map +0 -1
  798. package/dist/src/sync/v2/import/utils.d.ts +0 -43
  799. package/dist/src/sync/v2/import/utils.js +0 -149
  800. package/dist/src/sync/v2/import/utils.js.map +0 -1
  801. package/dist/src/sync/v2/types.d.ts +0 -69
  802. package/dist/src/sync/v2/types.js +0 -37
  803. package/dist/src/sync/v2/types.js.map +0 -1
  804. package/dist/src/sync/v4/application.d.ts +0 -44
  805. package/dist/src/sync/v4/application.js +0 -150
  806. package/dist/src/sync/v4/application.js.map +0 -1
  807. package/dist/src/sync/v4/export/controls/FilterBar.d.ts +0 -4
  808. package/dist/src/sync/v4/export/controls/FilterBar.js +0 -6
  809. package/dist/src/sync/v4/export/controls/FilterBar.js.map +0 -1
  810. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +0 -12
  811. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js +0 -132
  812. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +0 -1
  813. package/dist/src/sync/v4/export/controls/ObjectPageHeader.d.ts +0 -8
  814. package/dist/src/sync/v4/export/controls/ObjectPageHeader.js +0 -55
  815. package/dist/src/sync/v4/export/controls/ObjectPageHeader.js.map +0 -1
  816. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.d.ts +0 -21
  817. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js +0 -65
  818. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js.map +0 -1
  819. package/dist/src/sync/v4/export/controls/ObjectPageLayout.d.ts +0 -4
  820. package/dist/src/sync/v4/export/controls/ObjectPageLayout.js +0 -24
  821. package/dist/src/sync/v4/export/controls/ObjectPageLayout.js.map +0 -1
  822. package/dist/src/sync/v4/export/controls/ObjectPageTable.d.ts +0 -22
  823. package/dist/src/sync/v4/export/controls/ObjectPageTable.js +0 -180
  824. package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +0 -1
  825. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +0 -12
  826. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +0 -64
  827. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +0 -1
  828. package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +0 -4
  829. package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.js +0 -21
  830. package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.js.map +0 -1
  831. package/dist/src/sync/v4/export/controls/Table.d.ts +0 -132
  832. package/dist/src/sync/v4/export/controls/Table.js +0 -605
  833. package/dist/src/sync/v4/export/controls/Table.js.map +0 -1
  834. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +0 -63
  835. package/dist/src/sync/v4/export/controls/TableColumn.js +0 -310
  836. package/dist/src/sync/v4/export/controls/TableColumn.js.map +0 -1
  837. package/dist/src/sync/v4/export/controls/ToolBar.d.ts +0 -8
  838. package/dist/src/sync/v4/export/controls/ToolBar.js +0 -9
  839. package/dist/src/sync/v4/export/controls/ToolBar.js.map +0 -1
  840. package/dist/src/sync/v4/export/controls/ToolBarAction.d.ts +0 -7
  841. package/dist/src/sync/v4/export/controls/ToolBarAction.js +0 -31
  842. package/dist/src/sync/v4/export/controls/ToolBarAction.js.map +0 -1
  843. package/dist/src/sync/v4/export/controls/index.d.ts +0 -12
  844. package/dist/src/sync/v4/export/controls/index.js +0 -18
  845. package/dist/src/sync/v4/export/controls/index.js.map +0 -1
  846. package/dist/src/sync/v4/export/export.d.ts +0 -13
  847. package/dist/src/sync/v4/export/export.js +0 -803
  848. package/dist/src/sync/v4/export/export.js.map +0 -1
  849. package/dist/src/sync/v4/export/factory.d.ts +0 -8
  850. package/dist/src/sync/v4/export/factory.js +0 -44
  851. package/dist/src/sync/v4/export/factory.js.map +0 -1
  852. package/dist/src/sync/v4/export/flexibleColumnLayout.d.ts +0 -7
  853. package/dist/src/sync/v4/export/flexibleColumnLayout.js +0 -114
  854. package/dist/src/sync/v4/export/flexibleColumnLayout.js.map +0 -1
  855. package/dist/src/sync/v4/export/manifest.d.ts +0 -11
  856. package/dist/src/sync/v4/export/manifest.js +0 -224
  857. package/dist/src/sync/v4/export/manifest.js.map +0 -1
  858. package/dist/src/sync/v4/export/pages/ListReport.d.ts +0 -13
  859. package/dist/src/sync/v4/export/pages/ListReport.js +0 -82
  860. package/dist/src/sync/v4/export/pages/ListReport.js.map +0 -1
  861. package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +0 -8
  862. package/dist/src/sync/v4/export/pages/ObjectPage.js +0 -40
  863. package/dist/src/sync/v4/export/pages/ObjectPage.js.map +0 -1
  864. package/dist/src/sync/v4/export/pages/index.d.ts +0 -2
  865. package/dist/src/sync/v4/export/pages/index.js +0 -8
  866. package/dist/src/sync/v4/export/pages/index.js.map +0 -1
  867. package/dist/src/sync/v4/export/types.d.ts +0 -28
  868. package/dist/src/sync/v4/export/types.js +0 -3
  869. package/dist/src/sync/v4/export/types.js.map +0 -1
  870. package/dist/src/sync/v4/export/utils.d.ts +0 -14
  871. package/dist/src/sync/v4/export/utils.js +0 -43
  872. package/dist/src/sync/v4/export/utils.js.map +0 -1
  873. package/dist/src/sync/v4/generate/generate.d.ts +0 -30
  874. package/dist/src/sync/v4/generate/generate.js +0 -59
  875. package/dist/src/sync/v4/generate/generate.js.map +0 -1
  876. package/dist/src/sync/v4/generate/index.d.ts +0 -3
  877. package/dist/src/sync/v4/generate/index.js +0 -10
  878. package/dist/src/sync/v4/generate/index.js.map +0 -1
  879. package/dist/src/sync/v4/generate/listReport.d.ts +0 -13
  880. package/dist/src/sync/v4/generate/listReport.js +0 -604
  881. package/dist/src/sync/v4/generate/listReport.js.map +0 -1
  882. package/dist/src/sync/v4/generate/objectPage.d.ts +0 -11
  883. package/dist/src/sync/v4/generate/objectPage.js +0 -547
  884. package/dist/src/sync/v4/generate/objectPage.js.map +0 -1
  885. package/dist/src/sync/v4/import/app/appProvider.d.ts +0 -20
  886. package/dist/src/sync/v4/import/app/appProvider.js +0 -312
  887. package/dist/src/sync/v4/import/app/appProvider.js.map +0 -1
  888. package/dist/src/sync/v4/import/fragment.d.ts +0 -25
  889. package/dist/src/sync/v4/import/fragment.js +0 -130
  890. package/dist/src/sync/v4/import/fragment.js.map +0 -1
  891. package/dist/src/sync/v4/import/index.d.ts +0 -2
  892. package/dist/src/sync/v4/import/index.js +0 -8
  893. package/dist/src/sync/v4/import/index.js.map +0 -1
  894. package/dist/src/sync/v4/import/pages/listReport.d.ts +0 -21
  895. package/dist/src/sync/v4/import/pages/listReport.js +0 -271
  896. package/dist/src/sync/v4/import/pages/listReport.js.map +0 -1
  897. package/dist/src/sync/v4/import/pages/objectPage.d.ts +0 -23
  898. package/dist/src/sync/v4/import/pages/objectPage.js +0 -265
  899. package/dist/src/sync/v4/import/pages/objectPage.js.map +0 -1
  900. package/dist/src/sync/v4/import/utils.d.ts +0 -15
  901. package/dist/src/sync/v4/import/utils.js +0 -34
  902. package/dist/src/sync/v4/import/utils.js.map +0 -1
  903. package/dist/src/sync/v4/types.d.ts +0 -6
  904. package/dist/src/sync/v4/types.js +0 -3
  905. package/dist/src/sync/v4/types.js.map +0 -1
  906. package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -4
  907. package/dist/src/sync/v4/utils/StableIdHelper.js +0 -156
  908. package/dist/src/sync/v4/utils/StableIdHelper.js.map +0 -1
  909. package/dist/src/sync/v4/utils/utils.d.ts +0 -43
  910. package/dist/src/sync/v4/utils/utils.js +0 -177
  911. package/dist/src/sync/v4/utils/utils.js.map +0 -1
  912. package/dist/src/v2.d.ts +0 -2
  913. package/dist/src/v2.js +0 -8
  914. package/dist/src/v2.js.map +0 -1
  915. package/dist/src/v4.d.ts +0 -2
  916. package/dist/src/v4.js +0 -8
  917. package/dist/src/v4.js.map +0 -1
  918. package/dist/test/test-data/flexChange/v2/stta.prod.man/index.d.ts +0 -7
  919. package/dist/test/test-projects/index.d.ts +0 -2
  920. package/dist/test/test-utils/utils.d.ts +0 -32
  921. package/dist/test/unit/customSections/exportV2.test.d.ts +0 -1
  922. package/dist/test/unit/customSections/exportV4.test.d.ts +0 -1
  923. package/dist/test/unit/customSections/generateFacetsSchemaV2.test.d.ts +0 -1
  924. package/dist/test/unit/customSections/generateFacetsSchemaV4.test.d.ts +0 -1
  925. package/dist/test/unit/customSections/importV2.test.d.ts +0 -1
  926. package/dist/test/unit/customSections/importV4.test.d.ts +0 -1
  927. package/dist/test/unit/export/exportALPV2.test.d.ts +0 -1
  928. package/dist/test/unit/export/exportALPV4.test.d.ts +0 -1
  929. package/dist/test/unit/export/exportAppV2.test.d.ts +0 -1
  930. package/dist/test/unit/export/exportAppV4.test.d.ts +0 -1
  931. package/dist/test/unit/export/exportFormPageV4.test.d.ts +0 -1
  932. package/dist/test/unit/export/exportLRPV2.test.d.ts +0 -1
  933. package/dist/test/unit/export/exportLRPV2CustomColumns.test.d.ts +0 -1
  934. package/dist/test/unit/export/exportLRPV4.test.d.ts +0 -1
  935. package/dist/test/unit/export/exportOVPV2.test.d.ts +0 -1
  936. package/dist/test/unit/export/exportObjectPageV2.test.d.ts +0 -1
  937. package/dist/test/unit/export/exportObjectPageV4.test.d.ts +0 -1
  938. package/dist/test/unit/export/flexUtils.test.d.ts +0 -1
  939. package/dist/test/unit/export/manifest.test.d.ts +0 -1
  940. package/dist/test/unit/fcl/exportV2.test.d.ts +0 -1
  941. package/dist/test/unit/fcl/exportV4.test.d.ts +0 -1
  942. package/dist/test/unit/fcl/importV2.test.d.ts +0 -1
  943. package/dist/test/unit/fcl/importV4.test.d.ts +0 -1
  944. package/dist/test/unit/generateAppSchema/generateAppSchemaALPV2.test.d.ts +0 -1
  945. package/dist/test/unit/generateAppSchema/generateAppSchemaALPV4.test.d.ts +0 -1
  946. package/dist/test/unit/generateAppSchema/generateAppSchemaFPV4.test.d.ts +0 -1
  947. package/dist/test/unit/generateAppSchema/generateAppSchemaLRV2.test.d.ts +0 -1
  948. package/dist/test/unit/generateAppSchema/generateAppSchemaLRV4.test.d.ts +0 -1
  949. package/dist/test/unit/generateAppSchema/generateAppSchemaOPV2.test.d.ts +0 -1
  950. package/dist/test/unit/generateAppSchema/generateAppSchemaOPV4.test.d.ts +0 -1
  951. package/dist/test/unit/generateAppSchema/generateAppSchemaOVPV2.test.d.ts +0 -1
  952. package/dist/test/unit/generateGenericSchema/generateGenericSchemaAppV2.test.d.ts +0 -1
  953. package/dist/test/unit/generateGenericSchema/generateGenericSchemaAppV4.test.d.ts +0 -1
  954. package/dist/test/unit/generateGenericSchema/generateGenericSchemaLRV2.test.d.ts +0 -1
  955. package/dist/test/unit/generateGenericSchema/generateGenericSchemaLRV4.test.d.ts +0 -1
  956. package/dist/test/unit/generateGenericSchema/generateGenericSchemaOPV2.test.d.ts +0 -1
  957. package/dist/test/unit/generateGenericSchema/generateGenericSchemaOPV4.test.d.ts +0 -1
  958. package/dist/test/unit/generateGenericSchema/generateI18nV2.test.d.ts +0 -1
  959. package/dist/test/unit/generateGenericSchema/generateI18nV4.test.d.ts +0 -1
  960. package/dist/test/unit/generateGenericSchema/genericSchemas.test.d.ts +0 -1
  961. package/dist/test/unit/import/fragment.test.d.ts +0 -1
  962. package/dist/test/unit/import/importALPV2.test.d.ts +0 -1
  963. package/dist/test/unit/import/importALPV4.test.d.ts +0 -1
  964. package/dist/test/unit/import/importAppV2.test.d.ts +0 -1
  965. package/dist/test/unit/import/importAppV4.test.d.ts +0 -1
  966. package/dist/test/unit/import/importFPV4.test.d.ts +0 -1
  967. package/dist/test/unit/import/importLRPV2.test.d.ts +0 -1
  968. package/dist/test/unit/import/importLRPV4.test.d.ts +0 -1
  969. package/dist/test/unit/import/importOPV2.test.d.ts +0 -1
  970. package/dist/test/unit/import/importOPV4.test.d.ts +0 -1
  971. package/dist/test/unit/import/importOVPV2.test.d.ts +0 -1
  972. package/dist/test/unit/index.test.d.ts +0 -1
  973. package/dist/test/unit/projects.test.d.ts +0 -1
  974. package/dist/test/unit/schemaAccess.test.d.ts +0 -1
  975. package/dist/test/unit/utils.test.d.ts +0 -1
  976. package/dist/test/unit/view-controller-generator.test.d.ts +0 -1
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var SectionLayoutType;
4
- (function (SectionLayoutType) {
5
- SectionLayoutType["Tabs"] = "Tabs";
6
- SectionLayoutType["Page"] = "Page";
7
- })(SectionLayoutType = exports.SectionLayoutType || (exports.SectionLayoutType = {}));
8
- //# sourceMappingURL=ObjectPageLayout.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ObjectPageLayout.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/ObjectPageLayout.ts"],"names":[],"mappings":";;AAAA,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,kCAAa,CAAA;IACb,kCAAa,CAAA;AACjB,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B"}
@@ -1,98 +0,0 @@
1
- import type { ObjectPageSectionTableV4 } from '../controls/ObjectPageTable';
2
- import type { SAPUI5_FRAGMENT_CLASS } from '../../common/webapp/manifest/sapUi5';
3
- import type { ObjectPageToolBar } from './ObjectPageToolBar';
4
- export interface ObjectPageSectionForm {
5
- /**
6
- * Form
7
- * @isViewNode true
8
- */
9
- form?: object;
10
- }
11
- export interface ObjectPageSectionDataPoint {
12
- /**
13
- * Data Point
14
- * @isViewNode true
15
- */
16
- dataPoint?: object;
17
- }
18
- export interface ObjectPageSectionContact {
19
- /**
20
- * Contact
21
- * @isViewNode true
22
- */
23
- contact?: object;
24
- }
25
- export interface ObjectPageSectionAddress {
26
- /**
27
- * Address
28
- * @isViewNode true
29
- */
30
- address?: object;
31
- }
32
- export interface ObjectPageChart {
33
- /**
34
- * Chart Toolbar
35
- * @isViewNode true
36
- */
37
- toolBar?: ObjectPageToolBar;
38
- }
39
- export interface ObjectPageSectionChart {
40
- /**
41
- * Chart
42
- * @isViewNode true
43
- */
44
- chart?: ObjectPageChart;
45
- }
46
- export interface ObjectPageSectionPresentationVariant {
47
- /**
48
- * Presentation Variant
49
- */
50
- [key: string]: ObjectPageSectionTableV4 | ObjectPageSectionChart;
51
- }
52
- export interface GenericSections {
53
- [key: string]: ObjectPageSectionTableV4 | ObjectPageSectionForm | ObjectPageSectionDataPoint | ObjectPageSectionContact | ObjectPageSectionAddress | ObjectPageSectionPresentationVariant;
54
- }
55
- /**
56
- * Subsections
57
- * @isViewNode true
58
- */
59
- export interface ObjectPageSubSections {
60
- subsections: GenericSections;
61
- }
62
- export declare enum SectionPosition {
63
- After = "After",
64
- Before = "Before"
65
- }
66
- export declare enum CustomSectionViewTypesV4 {
67
- XML = "XML"
68
- }
69
- /**
70
- * Custom Sections
71
- * @isViewNode true
72
- */
73
- export interface CustomSections {
74
- /**
75
- * Custom Sections
76
- * @isViewNode true
77
- */
78
- custom?: ObjectPageCustomSectionFragment[];
79
- }
80
- export interface ObjectPageCustomSectionBase {
81
- relatedFacet: string;
82
- relativePosition: SectionPosition;
83
- id: string;
84
- type: CustomSectionViewTypesV4;
85
- /**
86
- * The label of the custom section, preferrable as an i18n key
87
- * @i18nClassification TIT: Custom section title
88
- */
89
- title: string;
90
- }
91
- /**
92
- * Fragment
93
- * @isViewNode true
94
- */
95
- export interface ObjectPageCustomSectionFragment extends ObjectPageCustomSectionBase {
96
- className: typeof SAPUI5_FRAGMENT_CLASS;
97
- fragmentName: string;
98
- }
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var SectionPosition;
4
- (function (SectionPosition) {
5
- SectionPosition["After"] = "After";
6
- SectionPosition["Before"] = "Before";
7
- })(SectionPosition = exports.SectionPosition || (exports.SectionPosition = {}));
8
- var CustomSectionViewTypesV4;
9
- (function (CustomSectionViewTypesV4) {
10
- CustomSectionViewTypesV4["XML"] = "XML";
11
- })(CustomSectionViewTypesV4 = exports.CustomSectionViewTypesV4 || (exports.CustomSectionViewTypesV4 = {}));
12
- //# sourceMappingURL=ObjectPageSection.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ObjectPageSection.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/ObjectPageSection.ts"],"names":[],"mappings":";;AA6EA,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,kCAAe,CAAA;IACf,oCAAiB,CAAA;AACrB,CAAC,EAHW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAG1B;AAED,IAAY,wBAEX;AAFD,WAAY,wBAAwB;IAChC,uCAAW,CAAA;AACf,CAAC,EAFW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAEnC"}
@@ -1,70 +0,0 @@
1
- import type { AnnotationPathAsObject, TableCreationModeType, TableSettings } from '../controls';
2
- import type { ObjectPageTableColumn as ObjectPageTableColumnIF, ObjectPageTableColumnAction } from '../webapp/manifest/ManifestSettings';
3
- import type { ObjectPageToolBar } from './ObjectPageToolBar';
4
- /**
5
- * Table
6
- * @isViewNode true
7
- */
8
- export interface ObjectPageTable extends TableSettingsOP {
9
- /**
10
- * In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.
11
- */
12
- enablePaste?: boolean;
13
- /**
14
- * Tool Bar
15
- */
16
- toolBar?: ObjectPageToolBar;
17
- }
18
- /**
19
- * Table Section
20
- * @isViewNode true
21
- */
22
- export interface ObjectPageSectionTableV4 {
23
- table?: ObjectPageTable;
24
- }
25
- export interface TableCreationModeOP {
26
- /**
27
- * The name property of TableCreationMode defines the creation mode; possible values are:
28
- * - NewPage: The create action leads to a new page.
29
- * - Inline: The create action leads to a new row at the table.
30
- * - CreationRow: No create button will be rendered, an empty row is directly given.
31
- * The default is "NewPage".
32
- */
33
- name?: TableCreationModeType;
34
- /**
35
- * In case of inline creation mode you can decide if the new row will be created at the end of the table, or direcly after the currently selected table. The default value is "true"
36
- */
37
- createAtEnd?: boolean;
38
- }
39
- export interface QuickVariantSelectionV4OP {
40
- /**
41
- * List of annotation paths referring to SelectionVariant annotations
42
- */
43
- paths: AnnotationPathAsObject[];
44
- /**
45
- * You can hide the table and display only the titles of the tabs. To do so, add the hideTableTitle option and set it to true.
46
- */
47
- hideTableTitle?: boolean;
48
- /**
49
- * You can show the counts of entries of each view. To do so, add the showCounts option and set it to true.
50
- */
51
- showCounts?: boolean;
52
- }
53
- export interface GenericColumnsOP {
54
- [key: string]: ObjectPageTableColumnIF | ObjectPageTableColumnAction;
55
- }
56
- export interface TableSettingsOP extends TableSettings {
57
- /**
58
- * Defines the page behavior when a new record is created.
59
- */
60
- creationMode?: TableCreationModeOP;
61
- /**
62
- * Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.
63
- */
64
- personalization?: boolean;
65
- /**
66
- * With quickVariantSelection you can switch on the multiple view feature (single table mode). It links to SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) you must have added to your annotations beforehand.
67
- */
68
- quickVariantSelection?: QuickVariantSelectionV4OP;
69
- columns?: GenericColumnsOP;
70
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=ObjectPageTable.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ObjectPageTable.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/ObjectPageTable.ts"],"names":[],"mappings":""}
@@ -1,25 +0,0 @@
1
- import type { SelectType } from './ToolBar';
2
- /**
3
- * Action
4
- * @isViewNode true
5
- */
6
- export interface ObjectPageToolBarAction {
7
- /**
8
- * Enables single selection for a bound action
9
- */
10
- enableOnSelect?: SelectType;
11
- }
12
- /**
13
- * Actions
14
- * @isViewNode true
15
- */
16
- export interface ObjectPageToolBarActions {
17
- [key: string]: ObjectPageToolBarAction;
18
- }
19
- /**
20
- * Toolbar
21
- * @isViewNode true
22
- */
23
- export interface ObjectPageToolBar {
24
- actions: ObjectPageToolBarActions;
25
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=ObjectPageToolBar.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ObjectPageToolBar.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/ObjectPageToolBar.ts"],"names":[],"mappings":""}
@@ -1,257 +0,0 @@
1
- import type { TableColumn, TableColumnAction, ViewTableColumn, ViewTableColumnAction, ViewTableCustomColumn } from './../webapp/manifest/ManifestSettings';
2
- import type { ToolBar, ViewChartToolBar } from './ToolBar';
3
- export declare enum SelectionMode {
4
- Multi = "Multi",
5
- None = "None",
6
- Single = "Single",
7
- Auto = "Auto"
8
- }
9
- export declare enum TableTypeV4 {
10
- ResponsiveTable = "ResponsiveTable",
11
- GridTable = "GridTable"
12
- }
13
- export declare enum TableCreationModeType {
14
- NewPage = "NewPage",
15
- Inline = "Inline",
16
- CreationRow = "CreationRow"
17
- }
18
- export declare enum DefaultPathType {
19
- Primary = "primary",
20
- Secondary = "secondary",
21
- Both = "both"
22
- }
23
- export interface TableCreationMode {
24
- /**
25
- * The name property of TableCreationMode defines the creation mode; possible values are:
26
- * - NewPage: The create action leads to a new page.
27
- * - Inline: The create action leads to a new row at the table.
28
- * - CreationRow: No create button will be rendered, an empty row is directly given.
29
- * The default is "NewPage".
30
- */
31
- name?: TableCreationModeType;
32
- /**
33
- * In case of inline creation mode you can decide if the new row will be created at the end of the table, or directly after the currently selected table. The default value is "true"
34
- */
35
- createAtEnd?: boolean;
36
- }
37
- export interface ViewTableCreationMode {
38
- /**
39
- * The name property of TableCreationMode defines the creation mode; possible values are:
40
- * - NewPage: The create action leads to a new page.
41
- * - Inline: The create action leads to a new row at the table.
42
- * - CreationRow: No create button will be rendered, an empty row is directly given.
43
- * The default is "NewPage".
44
- */
45
- name?: TableCreationModeType;
46
- /**
47
- * In case of inline creation mode you can decide if the new row will be created at the end of the table, or directly after the currently selected table. The default value is "true"
48
- */
49
- createAtEnd?: boolean;
50
- }
51
- export interface AnnotationPathAsObject {
52
- annotationPath: string;
53
- }
54
- export interface AnnotationPathWithKey {
55
- key: string;
56
- annotationPath: string;
57
- entitySet?: string;
58
- }
59
- export interface QuickVariantSelectionV4 {
60
- /**
61
- * List of annotation paths referring to SelectionVariant annotations
62
- */
63
- paths: AnnotationPathAsObject[];
64
- /**
65
- * You can hide the table and display only the titles of the tabs. To do so, add the hideTableTitle option and set it to true.
66
- */
67
- hideTableTitle?: boolean;
68
- /**
69
- * You can show the counts of entries of each view. To do so, add the showCounts option and set it to true.
70
- */
71
- showCounts?: boolean;
72
- }
73
- export interface GenericColumns {
74
- [key: string]: TableColumn | TableColumnAction;
75
- }
76
- export interface ViewColumns {
77
- [key: string]: ViewTableColumn | ViewTableColumnAction | ViewTableCustomColumn;
78
- }
79
- export interface TableSettings {
80
- /**
81
- * Use type to define the table type. Note: Grid tables, analytical tables, and tree tables cannot be rendered on smartphones. Instead, responsive tables always show on smartphones.
82
- */
83
- type?: TableTypeV4;
84
- /**
85
- * Applications can influence whether the table rows are selectable or not, and whether it allows for single selection or multiple selection. It can take the following values:
86
- * - "Auto": This is the default value. In this mode, Fiori Elements first checks if there are any custom actions or IBN buttons in the table toolbar that require a context. If no such buttons are found, then no table selection is allowed in display mode. In edit mode too a selection is not allowed unless there is a Delete button in the table toolbar in which case multiple row selection will be allowed.
87
- * - "Multi": This will allow end users to select multiple table records (in both display and edit mode)
88
- * - "Single" This will allow end user to select only a single table record (in both display and edit mode)
89
- * - "None": This will not allow the end user to select any table record in display mode. This will also be the case in edit mode unless the table has a delete button enabled, in which multiple selection is allowed in delete mode.
90
- */
91
- selectionMode?: SelectionMode;
92
- /**
93
- * The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.
94
- */
95
- selectAll?: boolean;
96
- /**
97
- * With the selectionLimit you can define how many items can be selected at a time,
98
- */
99
- selectionLimit?: number;
100
- /**
101
- * The exporting of the table to an Excel file is enabled in List Report tables by default. In Object Page, the export to Excel is available by default if the copy/paste feature is also available; otherwise it is disabled.
102
- * To disable the export in List Report or to enable it in Object Page, use the "enableExport" property and set it to false or true.
103
- */
104
- enableExport?: boolean;
105
- /**
106
- * With quickVariantSelection you can switch on the multiple view feature (single table mode). It links to SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) you must have added to your annotations beforehand.
107
- */
108
- quickVariantSelection?: QuickVariantSelectionV4;
109
- /**
110
- * You can set the content density to condensed for ui.table on the list report and object page applications.
111
- */
112
- condensedTableLayout?: boolean;
113
- }
114
- /**
115
- * Views
116
- * @isViewNode true
117
- */
118
- export interface MultiTableModeV4 {
119
- /**
120
- * List of annotation paths
121
- */
122
- [key: string]: LRTableView | LRChartView | boolean;
123
- /**
124
- * You can show the counts of entries of each view. To do so, add the showCounts option and set it to true.
125
- */
126
- showCounts?: boolean;
127
- }
128
- /**
129
- * Chart View
130
- * @isViewNode true
131
- */
132
- export interface ALPChartView {
133
- /**
134
- * The primary annotation path can be either UI.Chart, UI.PresentationVariant, or UI.SelectionPresentationVariant.
135
- */
136
- annotationPath: string;
137
- /**
138
- * Chart Toolbar
139
- * @isViewNode true
140
- */
141
- toolBar?: ViewChartToolBar;
142
- }
143
- /**
144
- * Chart View
145
- * @isViewNode true
146
- */
147
- export interface LRChartView {
148
- key: string;
149
- index: number;
150
- /**
151
- * To use charts in multiple table mode, define a UI.Chart annotation, including a qualifier.
152
- * Reference the UI.Chart annotation in your SelectionPresentationVariant or PresentationVariant for your view.
153
- */
154
- annotationPath: string;
155
- /**
156
- * Each chart can be based on a different entitySet.
157
- */
158
- entitySet?: string;
159
- /**
160
- * Chart Toolbar
161
- * @isViewNode true
162
- */
163
- toolBar?: ViewChartToolBar;
164
- }
165
- /**
166
- * Table View
167
- * @isViewNode true
168
- */
169
- export interface ALPTableView extends TableSettings {
170
- /**
171
- * The secondary annotation path can be either UI.LineItem, UI.PresentationVariant, or UI.SelectionPresentationVariant.
172
- */
173
- annotationPath: string;
174
- /**
175
- * initialLoad defines whether or not the data in the table is automatically loaded.
176
- */
177
- initialLoad?: boolean;
178
- /**
179
- * Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.
180
- * By default all table settings are enabled. You can change this for the different parts of the table by setting the properties "Column", "Sort" and "Filter" accordingly.
181
- * Omitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.
182
- */
183
- personalization?: boolean;
184
- /**
185
- * Defines the page behavior when a new record is created.
186
- */
187
- creationMode?: ViewTableCreationMode;
188
- /**
189
- * Table Toolbar
190
- */
191
- toolBar?: ToolBar;
192
- columns?: ViewColumns;
193
- }
194
- /**
195
- * Table View
196
- * @isViewNode true
197
- */
198
- export interface LRTableView extends TableSettings {
199
- key: string;
200
- index: number;
201
- /**
202
- * The annotation path can be either UI.LineItem, UI.PresentationVariant, or UI.SelectionPresentationVariant.
203
- */
204
- annotationPath: string;
205
- /**
206
- * Each table can be based on a different entitySet.
207
- */
208
- entitySet?: string;
209
- /**
210
- * The tab keeps the default LineItem ID (without the key), so the variant is applied to it.
211
- */
212
- keepPreviousPersonalization?: boolean;
213
- /**
214
- * Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.
215
- */
216
- personalization?: boolean;
217
- /**
218
- * Defines the page behavior when a new record is created.
219
- */
220
- creationMode?: ViewTableCreationMode;
221
- /**
222
- * Table Toolbar
223
- */
224
- toolBar?: ToolBar;
225
- columns?: ViewColumns;
226
- }
227
- /**
228
- * Table
229
- * @isViewNode true
230
- */
231
- export interface Table extends TableSettings {
232
- /**
233
- * The secondary annotation path can be either UI.LineItem, UI.PresentationVariant, or UI.SelectionPresentationVariant.
234
- */
235
- annotationPath?: string;
236
- /**
237
- * initialLoad defines whether or not the data in the table is automatically loaded.
238
- * - Disabled - Data is never loaded when opening the app without an app state.
239
- * - Enabled - Data is always loaded when opening the app.
240
- * - Auto - Data is only loaded, if initial/preset filters are available (e.g. defined by "SelectionVariant" definition, URL parameters or user defaults).
241
- */
242
- initialLoad?: boolean;
243
- /**
244
- * Defines the page behavior when a new record is created.
245
- */
246
- creationMode?: TableCreationMode;
247
- /**
248
- * Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.
249
- */
250
- personalization?: boolean;
251
- views?: MultiTableModeV4;
252
- /**
253
- * Tool Bar
254
- */
255
- toolBar?: ToolBar;
256
- columns?: GenericColumns;
257
- }
@@ -1,30 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var SelectionMode;
4
- (function (SelectionMode) {
5
- SelectionMode["Multi"] = "Multi";
6
- SelectionMode["None"] = "None";
7
- SelectionMode["Single"] = "Single";
8
- SelectionMode["Auto"] = "Auto";
9
- })(SelectionMode = exports.SelectionMode || (exports.SelectionMode = {}));
10
- var TableTypeV4;
11
- (function (TableTypeV4) {
12
- TableTypeV4["ResponsiveTable"] = "ResponsiveTable";
13
- TableTypeV4["GridTable"] = "GridTable";
14
- /* Not supported yet:
15
- AnalyticalTable = "AnalyticalTable",
16
- TreeTable = "TreeTable"*/
17
- })(TableTypeV4 = exports.TableTypeV4 || (exports.TableTypeV4 = {}));
18
- var TableCreationModeType;
19
- (function (TableCreationModeType) {
20
- TableCreationModeType["NewPage"] = "NewPage";
21
- TableCreationModeType["Inline"] = "Inline";
22
- TableCreationModeType["CreationRow"] = "CreationRow";
23
- })(TableCreationModeType = exports.TableCreationModeType || (exports.TableCreationModeType = {}));
24
- var DefaultPathType;
25
- (function (DefaultPathType) {
26
- DefaultPathType["Primary"] = "primary";
27
- DefaultPathType["Secondary"] = "secondary";
28
- DefaultPathType["Both"] = "both";
29
- })(DefaultPathType = exports.DefaultPathType || (exports.DefaultPathType = {}));
30
- //# sourceMappingURL=Table.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Table.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/Table.ts"],"names":[],"mappings":";;AASA,IAAY,aAKX;AALD,WAAY,aAAa;IACrB,gCAAe,CAAA;IACf,8BAAa,CAAA;IACb,kCAAiB,CAAA;IACjB,8BAAa,CAAA;AACjB,CAAC,EALW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAKxB;AAED,IAAY,WAMX;AAND,WAAY,WAAW;IACnB,kDAAmC,CAAA;IACnC,sCAAuB,CAAA;IACvB;;6BAEyB;AAC7B,CAAC,EANW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAMtB;AAED,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC7B,4CAAmB,CAAA;IACnB,0CAAiB,CAAA;IACjB,oDAA2B,CAAA;AAC/B,CAAC,EAJW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAIhC;AAED,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,sCAAmB,CAAA;IACnB,0CAAuB,CAAA;IACvB,gCAAa,CAAA;AACjB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B"}
@@ -1,53 +0,0 @@
1
- export declare enum SelectType {
2
- single = "single",
3
- multi = "multi"
4
- }
5
- /**
6
- * Action
7
- * @isViewNode true
8
- */
9
- export interface ToolBarAction {
10
- /**
11
- * Enables single selection for a bound action
12
- */
13
- enableOnSelect?: SelectType;
14
- }
15
- /**
16
- * Action
17
- * @isViewNode true
18
- */
19
- export interface ViewToolBarAction {
20
- /**
21
- * Enables single selection for a bound action
22
- */
23
- enableOnSelect?: SelectType;
24
- }
25
- export declare type ChartToolBarAction = {};
26
- /**
27
- * Actions
28
- * @isViewNode true
29
- */
30
- export interface Actions {
31
- [key: string]: ToolBarAction;
32
- }
33
- /**
34
- * Actions
35
- * @isViewNode true
36
- */
37
- export interface ViewActions {
38
- [key: string]: ViewToolBarAction | ChartToolBarAction;
39
- }
40
- /**
41
- * Table Toolbar
42
- * @isViewNode true
43
- */
44
- export interface ToolBar {
45
- actions: Actions;
46
- }
47
- /**
48
- * Chart Toolbar
49
- * @isViewNode true
50
- */
51
- export interface ViewChartToolBar {
52
- actions: ViewActions;
53
- }
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var SelectType;
4
- (function (SelectType) {
5
- SelectType["single"] = "single";
6
- SelectType["multi"] = "multi";
7
- })(SelectType = exports.SelectType || (exports.SelectType = {}));
8
- //# sourceMappingURL=ToolBar.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ToolBar.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/ToolBar.ts"],"names":[],"mappings":";;AAAA,IAAY,UAGX;AAHD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,6BAAe,CAAA;AACnB,CAAC,EAHW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAGrB"}
@@ -1,10 +0,0 @@
1
- export * from './Table';
2
- export * from './FilterBar';
3
- export * from './ToolBar';
4
- export * from './ObjectPageToolBar';
5
- export * from './ObjectPageHeader';
6
- export * from './ObjectPageHeaderSection';
7
- export * from './ObjectPageLayout';
8
- export * from './ObjectPageSection';
9
- export * from './ObjectPageTable';
10
- export * from './ObjectPageFooter';
@@ -1,11 +0,0 @@
1
- "use strict";
2
- function __export(m) {
3
- for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
- }
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- __export(require("./Table"));
7
- __export(require("./ToolBar"));
8
- __export(require("./ObjectPageHeaderSection"));
9
- __export(require("./ObjectPageLayout"));
10
- __export(require("./ObjectPageSection"));
11
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/specification/v4/controls/index.ts"],"names":[],"mappings":";;;;;AAAA,6BAAwB;AAExB,+BAA0B;AAG1B,+CAA0C;AAC1C,wCAAmC;AACnC,yCAAoC"}
@@ -1,5 +0,0 @@
1
- export * from './pages';
2
- export * from './controls';
3
- export * from './webapp';
4
- export * from './ApplicationV4';
5
- export * from './page';
@@ -1,9 +0,0 @@
1
- "use strict";
2
- function __export(m) {
3
- for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
- }
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- __export(require("./pages"));
7
- __export(require("./controls"));
8
- __export(require("./webapp"));
9
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/specification/v4/index.ts"],"names":[],"mappings":";;;;;AAAA,6BAAwB;AACxB,gCAA2B;AAC3B,8BAAyB"}
@@ -1,19 +0,0 @@
1
- import type { PagesBase, PageBase, PageTypeV4, SapUiGenericAppPageSettings } from '../common';
2
- import type { FlexibleColumnLayoutAggregations } from '.';
3
- export interface Pages extends PagesBase {
4
- [key: string]: Page;
5
- }
6
- export interface Page extends PageBase {
7
- view?: PageView;
8
- controlAggregation?: FlexibleColumnLayoutAggregations;
9
- pageType?: PageTypeV4;
10
- options?: {
11
- settings?: SapUiGenericAppPageSettings;
12
- };
13
- }
14
- export interface PageView {
15
- id: string;
16
- name: string;
17
- viewLevel?: number;
18
- title?: string;
19
- }