@sap/ux-specification 1.90.12 → 1.90.13

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 (139) hide show
  1. package/CHANGELOG.md +38 -4
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  3. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  4. package/dist/documentation/v2/v2-ListReport.html +1 -1
  5. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  6. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  7. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  8. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  9. package/dist/documentation/v4/v4-ListReport.html +1 -1
  10. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  11. package/dist/index-min.js +1 -1
  12. package/dist/schemas/v2/AnalyticalListPageConfig.json +86 -11
  13. package/dist/schemas/v2/ListReportConfig.json +86 -11
  14. package/dist/schemas/v2/ObjectPageConfig.json +265 -53
  15. package/dist/schemas/v2/OverviewPageConfig.json +0 -28
  16. package/dist/schemas/v4/ObjectPageConfig.json +22 -0
  17. package/dist/specification/v2/index-min.js +1 -1
  18. package/dist/src/apiTypes.d.ts +8 -0
  19. package/dist/src/specification/v2/controls/Card.d.ts +0 -8
  20. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  21. package/dist/src/specification/v2/controls/{DataField.d.ts → Field.d.ts} +2 -2
  22. package/dist/src/specification/v2/controls/{DataField.js → Field.js} +1 -1
  23. package/dist/src/specification/v2/controls/Field.js.map +1 -0
  24. package/dist/src/specification/v2/controls/FormAction.d.ts +43 -0
  25. package/dist/src/specification/v2/controls/FormAction.js +20 -0
  26. package/dist/src/specification/v2/controls/FormAction.js.map +1 -0
  27. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +11 -0
  28. package/dist/src/specification/v2/controls/ObjectPageFooter.js +3 -0
  29. package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +1 -0
  30. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +4 -5
  31. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +20 -0
  32. package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +25 -15
  33. package/dist/src/specification/v2/controls/ObjectPageSection.js.map +1 -1
  34. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +8 -4
  35. package/dist/src/specification/v2/controls/ObjectPageTable.js.map +1 -1
  36. package/dist/src/specification/v2/controls/Table.d.ts +4 -3
  37. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -6
  38. package/dist/src/specification/v2/controls/index.d.ts +4 -1
  39. package/dist/src/specification/v2/controls/index.js +1 -0
  40. package/dist/src/specification/v2/controls/index.js.map +1 -1
  41. package/dist/src/specification/v2/pages/ObjectPageConfig.d.ts +2 -1
  42. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +11 -0
  43. package/dist/src/specification/v4/controls/ObjectPageFooter.js +3 -0
  44. package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +1 -0
  45. package/dist/src/specification/v4/controls/index.d.ts +1 -0
  46. package/dist/src/specification/v4/pages/ObjectPageConfig.d.ts +2 -1
  47. package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +2 -1
  48. package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +1 -1
  49. package/dist/src/sync/common/decoration/control.js +34 -19
  50. package/dist/src/sync/common/decoration/control.js.map +1 -1
  51. package/dist/src/sync/common/generate/objectPage.d.ts +31 -2
  52. package/dist/src/sync/common/generate/objectPage.js +185 -20
  53. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  54. package/dist/src/sync/common/import/utils.d.ts +6 -0
  55. package/dist/src/sync/common/import/utils.js +21 -0
  56. package/dist/src/sync/common/import/utils.js.map +1 -1
  57. package/dist/src/sync/common/importProject.js +62 -60
  58. package/dist/src/sync/common/importProject.js.map +1 -1
  59. package/dist/src/sync/common/types.d.ts +5 -2
  60. package/dist/src/sync/common/types.js +4 -0
  61. package/dist/src/sync/common/types.js.map +1 -1
  62. package/dist/src/sync/common/utils.d.ts +4 -3
  63. package/dist/src/sync/common/utils.js +76 -81
  64. package/dist/src/sync/common/utils.js.map +1 -1
  65. package/dist/src/sync/v2/application.d.ts +1 -0
  66. package/dist/src/sync/v2/application.js +3 -0
  67. package/dist/src/sync/v2/application.js.map +1 -1
  68. package/dist/src/sync/v2/export/controls/Card.d.ts +0 -2
  69. package/dist/src/sync/v2/export/controls/Card.js +0 -14
  70. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  71. package/dist/src/sync/v2/export/controls/Field.d.ts +4 -0
  72. package/dist/src/sync/v2/export/controls/{DataField.js → Field.js} +6 -6
  73. package/dist/src/sync/v2/export/controls/Field.js.map +1 -0
  74. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -2
  75. package/dist/src/sync/v2/export/controls/FilterBar.js +2 -4
  76. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  77. package/dist/src/sync/v2/export/controls/FormAction.d.ts +15 -0
  78. package/dist/src/sync/v2/export/controls/FormAction.js +133 -0
  79. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -0
  80. package/dist/src/sync/v2/export/controls/ObjectPageChart.d.ts +4 -1
  81. package/dist/src/sync/v2/export/controls/ObjectPageChart.js +13 -0
  82. package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +1 -1
  83. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +5 -1
  84. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +42 -3
  85. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  86. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +32 -0
  87. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +144 -0
  88. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -0
  89. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +5 -4
  90. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +16 -4
  91. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  92. package/dist/src/sync/v2/export/controls/Table.d.ts +12 -4
  93. package/dist/src/sync/v2/export/controls/Table.js +84 -37
  94. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  95. package/dist/src/sync/v2/export/controls/index.d.ts +3 -1
  96. package/dist/src/sync/v2/export/controls/index.js +3 -1
  97. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  98. package/dist/src/sync/v2/export/export.js +125 -86
  99. package/dist/src/sync/v2/export/export.js.map +1 -1
  100. package/dist/src/sync/v2/generate/analyticalListReport.d.ts +3 -9
  101. package/dist/src/sync/v2/generate/analyticalListReport.js +12 -13
  102. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  103. package/dist/src/sync/v2/generate/generate.js +28 -6
  104. package/dist/src/sync/v2/generate/generate.js.map +1 -1
  105. package/dist/src/sync/v2/generate/listReport.d.ts +3 -10
  106. package/dist/src/sync/v2/generate/listReport.js +7 -12
  107. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  108. package/dist/src/sync/v2/generate/objectPage.d.ts +3 -10
  109. package/dist/src/sync/v2/generate/objectPage.js +199 -151
  110. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  111. package/dist/src/sync/v2/generate/utils.d.ts +1 -2
  112. package/dist/src/sync/v2/generate/utils.js +5 -0
  113. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  114. package/dist/src/sync/v2/import/pages/objectPage.js +162 -88
  115. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  116. package/dist/src/sync/v2/types.d.ts +12 -0
  117. package/dist/src/sync/v2/types.js +11 -0
  118. package/dist/src/sync/v2/types.js.map +1 -1
  119. package/dist/src/sync/v4/application.js +10 -10
  120. package/dist/src/sync/v4/application.js.map +1 -1
  121. package/dist/src/sync/v4/export/export.js +156 -134
  122. package/dist/src/sync/v4/export/export.js.map +1 -1
  123. package/dist/src/sync/v4/export/manifest.js +96 -76
  124. package/dist/src/sync/v4/export/manifest.js.map +1 -1
  125. package/dist/src/sync/v4/generate/generate.js +10 -2
  126. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  127. package/dist/src/sync/v4/generate/objectPage.d.ts +3 -6
  128. package/dist/src/sync/v4/generate/objectPage.js +87 -94
  129. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  130. package/dist/src/sync/v4/import/app/appProvider.js +108 -80
  131. package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
  132. package/dist/src/sync/v4/import/fragment.js +41 -46
  133. package/dist/src/sync/v4/import/fragment.js.map +1 -1
  134. package/dist/src/sync/v4/utils/utils.js +1 -1
  135. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  136. package/package.json +4 -5
  137. package/dist/src/specification/v2/controls/DataField.js.map +0 -1
  138. package/dist/src/sync/v2/export/controls/DataField.d.ts +0 -4
  139. package/dist/src/sync/v2/export/controls/DataField.js.map +0 -1
@@ -50,6 +50,9 @@
50
50
  }
51
51
  ]
52
52
  },
53
+ "footer": {
54
+ "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
55
+ },
53
56
  "$schema": {
54
57
  "type": "string"
55
58
  }
@@ -61,7 +64,8 @@
61
64
  "properties": {
62
65
  "variantManagement": {
63
66
  "description": "To enable variant management for charts in an object page",
64
- "type": "boolean"
67
+ "type": "boolean",
68
+ "artifactType": "Manifest"
65
69
  }
66
70
  },
67
71
  "additionalProperties": false
@@ -125,6 +129,30 @@
125
129
  "isViewNode": true,
126
130
  "type": "object",
127
131
  "properties": {
132
+ "tooltip": {
133
+ "description": "Text for tooltip of button",
134
+ "type": "string",
135
+ "artifactType": "FlexChange",
136
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
137
+ },
138
+ "icon": {
139
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.",
140
+ "type": "string",
141
+ "artifactType": "FlexChange",
142
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
143
+ },
144
+ "activeIcon": {
145
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
146
+ "type": "string",
147
+ "artifactType": "FlexChange",
148
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
149
+ },
150
+ "type": {
151
+ "$ref": "#/definitions/ButtonType",
152
+ "description": "Defines the Button type.",
153
+ "artifactType": "FlexChange",
154
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
155
+ },
128
156
  "visible": {
129
157
  "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
130
158
  "anyOf": [
@@ -140,12 +168,32 @@
140
168
  "type": "string"
141
169
  }
142
170
  ],
171
+ "description": "Whether the button should be visible on the screen.",
143
172
  "artifactType": "FlexChange",
144
- "controlType": "sap.m.Button"
173
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
145
174
  }
146
175
  },
147
176
  "additionalProperties": false
148
177
  },
178
+ "ButtonType": {
179
+ "enum": [
180
+ "Accept",
181
+ "Attention",
182
+ "Back",
183
+ "Critical",
184
+ "Default",
185
+ "Emphasized",
186
+ "Ghost",
187
+ "Negative",
188
+ "Neutral",
189
+ "Reject",
190
+ "Success",
191
+ "Transparent",
192
+ "Unstyled",
193
+ "Up"
194
+ ],
195
+ "type": "string"
196
+ },
149
197
  "ObjectPageLayout": {
150
198
  "description": "Page Layout",
151
199
  "isViewNode": true,
@@ -182,6 +230,9 @@
182
230
  "type": "object",
183
231
  "additionalProperties": {
184
232
  "anyOf": [
233
+ {
234
+ "$ref": "#/definitions/ObjectPageSectionFormV2"
235
+ },
185
236
  {
186
237
  "$ref": "#/definitions/ObjectPageSectionTableV2"
187
238
  },
@@ -189,11 +240,145 @@
189
240
  "$ref": "#/definitions/ObjectPageSectionChartV2"
190
241
  },
191
242
  {
192
- "$ref": "#/definitions/ObjectPageSectionFormV2"
243
+ "$ref": "#/definitions/ObjectPageSubSectionV2"
193
244
  }
194
245
  ]
195
246
  }
196
247
  },
248
+ "ObjectPageSectionFormV2": {
249
+ "description": "Form",
250
+ "isViewNode": true,
251
+ "type": "object",
252
+ "properties": {
253
+ "form": {
254
+ "$ref": "#/definitions/ObjectPageForm"
255
+ },
256
+ "visible": {
257
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
258
+ "anyOf": [
259
+ {
260
+ "enum": [
261
+ false,
262
+ true,
263
+ "{ui>/editable}",
264
+ "{= !${ui>/editable}}"
265
+ ]
266
+ },
267
+ {
268
+ "type": "string"
269
+ }
270
+ ],
271
+ "description": "Whether the section should be visible on the screen.",
272
+ "artifactType": "FlexChange",
273
+ "controlType": "sap.uxap.ObjectPageSection"
274
+ }
275
+ },
276
+ "additionalProperties": false
277
+ },
278
+ "ObjectPageForm": {
279
+ "description": "Object Page Form",
280
+ "isViewNode": true,
281
+ "type": "object",
282
+ "properties": {
283
+ "fields": {
284
+ "$ref": "#/definitions/ObjectPageFormFields"
285
+ },
286
+ "actions": {
287
+ "$ref": "#/definitions/ObjectPageFormActions"
288
+ }
289
+ },
290
+ "additionalProperties": false
291
+ },
292
+ "ObjectPageFormFields": {
293
+ "type": "object",
294
+ "additionalProperties": {
295
+ "$ref": "#/definitions/Field"
296
+ }
297
+ },
298
+ "Field": {
299
+ "description": "Field",
300
+ "isViewNode": true,
301
+ "type": "object",
302
+ "properties": {
303
+ "visible": {
304
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
305
+ "anyOf": [
306
+ {
307
+ "enum": [
308
+ false,
309
+ true,
310
+ "{ui>/editable}",
311
+ "{= !${ui>/editable}}"
312
+ ]
313
+ },
314
+ {
315
+ "type": "string"
316
+ }
317
+ ],
318
+ "description": "Whether the field should be visible on the screen.",
319
+ "artifactType": "FlexChange",
320
+ "controlType": "sap.ui.comp.smartform.SmartGroup"
321
+ }
322
+ },
323
+ "additionalProperties": false
324
+ },
325
+ "ObjectPageFormActions": {
326
+ "type": "object",
327
+ "additionalProperties": {
328
+ "$ref": "#/definitions/FormAction"
329
+ }
330
+ },
331
+ "FormAction": {
332
+ "description": "Action",
333
+ "isViewNode": true,
334
+ "type": "object",
335
+ "properties": {
336
+ "tooltip": {
337
+ "description": "Text for tooltip of button",
338
+ "type": "string",
339
+ "artifactType": "FlexChange",
340
+ "controlType": "sap.m.Button"
341
+ },
342
+ "icon": {
343
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.",
344
+ "type": "string",
345
+ "artifactType": "FlexChange",
346
+ "controlType": "sap.m.Button"
347
+ },
348
+ "activeIcon": {
349
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
350
+ "type": "string",
351
+ "artifactType": "FlexChange",
352
+ "controlType": "sap.m.Button"
353
+ },
354
+ "type": {
355
+ "$ref": "#/definitions/ButtonType",
356
+ "description": "Defines the Button type.",
357
+ "artifactType": "FlexChange",
358
+ "controlType": "sap.m.Button"
359
+ },
360
+ "visible": {
361
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
362
+ "anyOf": [
363
+ {
364
+ "enum": [
365
+ false,
366
+ true,
367
+ "{ui>/editable}",
368
+ "{= !${ui>/editable}}"
369
+ ]
370
+ },
371
+ {
372
+ "type": "string"
373
+ }
374
+ ],
375
+ "description": "Whether the button should be visible on the screen.",
376
+ "artifactType": "FlexChange",
377
+ "controlType": "sap.m.Button"
378
+ }
379
+ },
380
+ "additionalProperties": false
381
+ },
197
382
  "ObjectPageSectionTableV2": {
198
383
  "description": "Table",
199
384
  "isViewNode": true,
@@ -217,6 +402,25 @@
217
402
  "$ref": "#/definitions/ObjectPageTreeTable"
218
403
  }
219
404
  ]
405
+ },
406
+ "visible": {
407
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
408
+ "anyOf": [
409
+ {
410
+ "enum": [
411
+ false,
412
+ true,
413
+ "{ui>/editable}",
414
+ "{= !${ui>/editable}}"
415
+ ]
416
+ },
417
+ {
418
+ "type": "string"
419
+ }
420
+ ],
421
+ "description": "Whether the section should be visible on the screen.",
422
+ "artifactType": "FlexChange",
423
+ "controlType": "sap.uxap.ObjectPageSection"
220
424
  }
221
425
  },
222
426
  "additionalProperties": false
@@ -339,10 +543,7 @@
339
543
  "type": "object",
340
544
  "properties": {
341
545
  "fields": {
342
- "type": "object",
343
- "additionalProperties": {
344
- "$ref": "#/definitions/FieldPath"
345
- },
546
+ "$ref": "#/definitions/CreationFieldKeysOP",
346
547
  "artifactType": "Manifest"
347
548
  }
348
549
  },
@@ -351,11 +552,18 @@
351
552
  "fields"
352
553
  ]
353
554
  },
354
- "FieldPath": {
555
+ "CreationFieldKeysOP": {
556
+ "type": "object",
557
+ "additionalProperties": {
558
+ "$ref": "#/definitions/FieldPathOP"
559
+ }
560
+ },
561
+ "FieldPathOP": {
355
562
  "type": "object",
356
563
  "properties": {
357
564
  "path": {
358
- "type": "string"
565
+ "type": "string",
566
+ "artifactType": "Manifest"
359
567
  }
360
568
  },
361
569
  "additionalProperties": false,
@@ -922,6 +1130,25 @@
922
1130
  "properties": {
923
1131
  "chart": {
924
1132
  "$ref": "#/definitions/ObjectPageChart"
1133
+ },
1134
+ "visible": {
1135
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1136
+ "anyOf": [
1137
+ {
1138
+ "enum": [
1139
+ false,
1140
+ true,
1141
+ "{ui>/editable}",
1142
+ "{= !${ui>/editable}}"
1143
+ ]
1144
+ },
1145
+ {
1146
+ "type": "string"
1147
+ }
1148
+ ],
1149
+ "description": "Whether the section should be visible on the screen.",
1150
+ "artifactType": "FlexChange",
1151
+ "controlType": "sap.uxap.ObjectPageSection"
925
1152
  }
926
1153
  },
927
1154
  "additionalProperties": false
@@ -939,42 +1166,16 @@
939
1166
  },
940
1167
  "additionalProperties": false
941
1168
  },
942
- "ObjectPageSectionFormV2": {
943
- "description": "Form",
944
- "isViewNode": true,
945
- "type": "object",
946
- "properties": {
947
- "form": {
948
- "$ref": "#/definitions/ObjectPageForm"
949
- }
950
- },
951
- "additionalProperties": false
952
- },
953
- "ObjectPageForm": {
954
- "description": "Object Page Form",
1169
+ "ObjectPageSubSectionV2": {
1170
+ "description": "Subsection",
955
1171
  "isViewNode": true,
956
1172
  "type": "object",
957
1173
  "properties": {
958
- "fields": {
959
- "$ref": "#/definitions/ObjectPageFormFields"
1174
+ "subsections": {
1175
+ "type": "object",
1176
+ "properties": {},
1177
+ "additionalProperties": true
960
1178
  },
961
- "actions": {
962
- "$ref": "#/definitions/ObjectPageFormActions"
963
- }
964
- },
965
- "additionalProperties": false
966
- },
967
- "ObjectPageFormFields": {
968
- "type": "object",
969
- "additionalProperties": {
970
- "$ref": "#/definitions/DataField"
971
- }
972
- },
973
- "DataField": {
974
- "description": "DataField",
975
- "isViewNode": true,
976
- "type": "object",
977
- "properties": {
978
1179
  "visible": {
979
1180
  "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
980
1181
  "anyOf": [
@@ -990,21 +1191,13 @@
990
1191
  "type": "string"
991
1192
  }
992
1193
  ],
993
- "description": "Whether the field should be visible on the screen.",
1194
+ "description": "Whether the section should be visible on the screen.",
994
1195
  "artifactType": "FlexChange",
995
- "controlType": "sap.ui.comp.smartform.SmartGroup"
1196
+ "controlType": "sap.uxap.ObjectPageSubSection"
996
1197
  }
997
1198
  },
998
1199
  "additionalProperties": false
999
1200
  },
1000
- "ObjectPageFormActions": {
1001
- "type": "object",
1002
- "additionalProperties": {
1003
- "type": "object",
1004
- "properties": {},
1005
- "additionalProperties": true
1006
- }
1007
- },
1008
1201
  "CustomSections": {
1009
1202
  "description": "Custom Sections",
1010
1203
  "isViewNode": true,
@@ -1050,7 +1243,7 @@
1050
1243
  "$ref": "#/definitions/SectionPosition"
1051
1244
  },
1052
1245
  "title": {
1053
- "description": "The label of the custom section, preferrable as an i18n key",
1246
+ "description": "The label of the custom section, preferably as an i18n key",
1054
1247
  "i18nClassification": "TIT: Custom section title",
1055
1248
  "type": "string"
1056
1249
  }
@@ -1109,7 +1302,7 @@
1109
1302
  "$ref": "#/definitions/SectionPosition"
1110
1303
  },
1111
1304
  "title": {
1112
- "description": "The label of the custom section, preferrable as an i18n key",
1305
+ "description": "The label of the custom section, preferably as an i18n key",
1113
1306
  "i18nClassification": "TIT: Custom section title",
1114
1307
  "type": "string"
1115
1308
  }
@@ -1123,6 +1316,25 @@
1123
1316
  "title",
1124
1317
  "type"
1125
1318
  ]
1319
+ },
1320
+ "ObjectPageFooter<GenericFooterActions>": {
1321
+ "description": "Footer",
1322
+ "isViewNode": true,
1323
+ "type": "object",
1324
+ "properties": {
1325
+ "actions": {
1326
+ "$ref": "#/definitions/GenericFooterActions"
1327
+ }
1328
+ },
1329
+ "additionalProperties": false
1330
+ },
1331
+ "GenericFooterActions": {
1332
+ "type": "object",
1333
+ "additionalProperties": {
1334
+ "type": "object",
1335
+ "properties": {},
1336
+ "additionalProperties": true
1337
+ }
1126
1338
  }
1127
1339
  },
1128
1340
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -1043,20 +1043,6 @@
1043
1043
  "$ref": "#/definitions/StackCardSettings",
1044
1044
  "description": "Represents the properties that are passed to the stack card.",
1045
1045
  "artifactType": "Manifest"
1046
- },
1047
- "tabs": {
1048
- "description": "Represents the Stack Card with view switch control.",
1049
- "type": "array",
1050
- "items": [
1051
- {
1052
- "$ref": "#/definitions/TabSetting"
1053
- }
1054
- ],
1055
- "minItems": 1,
1056
- "additionalItems": {
1057
- "$ref": "#/definitions/TabSetting"
1058
- },
1059
- "artifactType": "Manifest"
1060
1046
  }
1061
1047
  },
1062
1048
  "additionalProperties": false,
@@ -1199,20 +1185,6 @@
1199
1185
  "$ref": "#/definitions/LinkListCardSettings",
1200
1186
  "description": "Represents the properties that are passed to the link list card.",
1201
1187
  "artifactType": "Manifest"
1202
- },
1203
- "tabs": {
1204
- "description": "Represents the card with view switch control.",
1205
- "type": "array",
1206
- "items": [
1207
- {
1208
- "$ref": "#/definitions/TabSetting"
1209
- }
1210
- ],
1211
- "minItems": 1,
1212
- "additionalItems": {
1213
- "$ref": "#/definitions/TabSetting"
1214
- },
1215
- "artifactType": "Manifest"
1216
1188
  }
1217
1189
  },
1218
1190
  "additionalProperties": false,
@@ -22,6 +22,9 @@
22
22
  }
23
23
  ]
24
24
  },
25
+ "footer": {
26
+ "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
27
+ },
25
28
  "$schema": {
26
29
  "type": "string"
27
30
  }
@@ -716,6 +719,25 @@
716
719
  "Before"
717
720
  ],
718
721
  "type": "string"
722
+ },
723
+ "ObjectPageFooter<GenericFooterActions>": {
724
+ "description": "Footer",
725
+ "isViewNode": true,
726
+ "type": "object",
727
+ "properties": {
728
+ "actions": {
729
+ "$ref": "#/definitions/GenericFooterActions"
730
+ }
731
+ },
732
+ "additionalProperties": false
733
+ },
734
+ "GenericFooterActions": {
735
+ "type": "object",
736
+ "additionalProperties": {
737
+ "type": "object",
738
+ "properties": {},
739
+ "additionalProperties": true
740
+ }
719
741
  }
720
742
  },
721
743
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -1 +1 @@
1
- (()=>{"use strict";var e={6442:(e,a)=>{var t;Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(a.DataSourceType||(a.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(t=a.ManifestSection||(a.ManifestSection={})),a.GENERICAPPSETTINGS=`${t.generic}/settings`},3404:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(6442)),n(t(5281))},5281:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",a.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(a.ViewTypes||(a.ViewTypes={})),a.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",a.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(a.TableColumnVerticalAlignment||(a.TableColumnVerticalAlignment={}))},2387:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(a.ChartType||(a.ChartType={}))},6745:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(a.ChartCardType||(a.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(a.CardTemplateType||(a.CardTemplateType={})),a.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(a.CardSettingsType||(a.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(a.MeasureAggregateValues||(a.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(a.ListFlavorType||(a.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(a.ListTypeType||(a.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(a.SortOrderType||(a.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(a.LinkListFlavorType||(a.LinkListFlavorType={}))},2922:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(a.DateRangeType||(a.DateRangeType={}))},3872:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(a.AvatarShape||(a.AvatarShape={}))},7876:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.ExtensionFragmentTypes||(a.ExtensionFragmentTypes={}))},9649:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.inline="inline"}(a.CreateMode||(a.CreateMode={}))},2906:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(a.HAlign||(a.HAlign={})),function(e){e.XML="XML"}(a.customColumnViewTypes||(a.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(a.TableTypeV2||(a.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(a.TableColumnExtensionTypeV2||(a.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(a.PopinLayout||(a.PopinLayout={})),function(e){e.extension="extension"}(a.Strategy||(a.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(a.DefaultContentView||(a.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(a.DefaultFilterMode||(a.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(a.LoadDataOnAppLaunchSettings||(a.LoadDataOnAppLaunchSettings={}))},6402:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(2922)),n(t(2906)),n(t(3872)),n(t(7876)),n(t(6745)),n(t(9649)),n(t(2387))},390:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(3800)),n(t(6402)),n(t(9809)),n(t(3846))},2505:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(a.ContainerLayoutType||(a.ContainerLayoutType={}))},3800:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(2505))},9809:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(4149))},4149:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(4867)),n(t(1374))},1374:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0});t(5877);a.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",a.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",a.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",a.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",a.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FE_TEMPLATE_V2="sap.suite.ui.generic.template",a.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",a.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",a.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(a.DesigntimeValues||(a.DesigntimeValues={}))},8554:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(a.SectionLayoutType||(a.SectionLayoutType={}))},4685:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.CustomSectionViewTypesV4||(a.CustomSectionViewTypesV4={}))},7093:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(a.SelectionMode||(a.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(a.TableTypeV4||(a.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(a.TableCreationModeType||(a.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(a.InitialLoadType||(a.InitialLoadType={}))},8452:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(a.SelectType||(a.SelectType={}))},1709:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(7093)),n(t(8452)),n(t(9734)),n(t(8554)),n(t(4685))},5877:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(7005)),n(t(1709)),n(t(5113))},5759:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(a.VariantManagementTypeListReport||(a.VariantManagementTypeListReport={}))},8999:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(a.VariantManagementTypeObjectPage||(a.VariantManagementTypeObjectPage={}))},7005:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(8999)),n(t(5759))},5113:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(6568))},5817:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(a.Placement||(a.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(a.Availability||(a.Availability={}))},6568:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(8778)),n(t(8741)),n(t(3404)),n(t(5817))},8741:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(a.FlexibleColumnLayoutAggregations||(a.FlexibleColumnLayoutAggregations={})),a.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FE_TEMPLATE_V4="sap.fe.templates",a.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",a.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",a.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",a.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",a.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(a.SectionPositionV4||(a.SectionPositionV4={}))}},a={};var t=function t(n){var i=a[n];if(void 0!==i)return i.exports;var o=a[n]={exports:{}};return e[n](o,o.exports,t),o.exports}(390);module.exports=t})();
1
+ (()=>{"use strict";var e={6442:(e,t)=>{var a;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(t.DataSourceType||(t.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(a=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${a.generic}/settings`},3404:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6442)),n(a(5281))},5281:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",t.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(t.ViewTypes||(t.ViewTypes={})),t.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",t.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(t.TableColumnVerticalAlignment||(t.TableColumnVerticalAlignment={}))},2387:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(t.ChartType||(t.ChartType={}))},6745:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(t.ChartCardType||(t.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(t.CardTemplateType||(t.CardTemplateType={})),t.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(t.CardSettingsType||(t.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(t.MeasureAggregateValues||(t.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(t.ListFlavorType||(t.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(t.ListTypeType||(t.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(t.SortOrderType||(t.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(t.LinkListFlavorType||(t.LinkListFlavorType={}))},2922:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(t.DateRangeType||(t.DateRangeType={}))},247:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Accept="Accept",e.Attention="Attention",e.Back="Back",e.Critical="Critical",e.Default="Default",e.Emphasized="Emphasized",e.Ghost="Ghost",e.Negative="Negative",e.Neutral="Neutral",e.Reject="Reject",e.Success="Success",e.Transparent="Transparent",e.Unstyled="Unstyled",e.Up="Up"}(t.ButtonType||(t.ButtonType={}))},3872:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(t.AvatarShape||(t.AvatarShape={}))},7876:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.ExtensionFragmentTypes||(t.ExtensionFragmentTypes={}))},9649:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.inline="inline"}(t.CreateMode||(t.CreateMode={}))},2906:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(t.HAlign||(t.HAlign={})),function(e){e.XML="XML"}(t.customColumnViewTypes||(t.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(t.TableTypeV2||(t.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(t.TableColumnExtensionTypeV2||(t.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(t.PopinLayout||(t.PopinLayout={})),function(e){e.extension="extension"}(t.Strategy||(t.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(t.DefaultContentView||(t.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(t.DefaultFilterMode||(t.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(t.LoadDataOnAppLaunchSettings||(t.LoadDataOnAppLaunchSettings={}))},6402:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(2922)),n(a(2906)),n(a(3872)),n(a(7876)),n(a(6745)),n(a(9649)),n(a(2387)),n(a(247))},390:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(3800)),n(a(6402)),n(a(9809)),n(a(3846))},2505:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(t.ContainerLayoutType||(t.ContainerLayoutType={}))},3800:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(2505))},9809:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(4149))},4149:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(4867)),n(a(1374))},1374:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0});a(5877);t.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",t.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",t.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",t.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",t.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V2="sap.suite.ui.generic.template",t.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",t.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",t.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(t.DesigntimeValues||(t.DesigntimeValues={}))},8554:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(t.SectionLayoutType||(t.SectionLayoutType={}))},4685:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.CustomSectionViewTypesV4||(t.CustomSectionViewTypesV4={}))},7093:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(t.SelectionMode||(t.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(t.TableTypeV4||(t.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(t.TableCreationModeType||(t.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(t.InitialLoadType||(t.InitialLoadType={}))},8452:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(t.SelectType||(t.SelectType={}))},1709:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7093)),n(a(8452)),n(a(9734)),n(a(8554)),n(a(4685))},5877:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7005)),n(a(1709)),n(a(5113))},5759:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(t.VariantManagementTypeListReport||(t.VariantManagementTypeListReport={}))},8999:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(t.VariantManagementTypeObjectPage||(t.VariantManagementTypeObjectPage={}))},7005:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8999)),n(a(5759))},5113:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(6568))},5817:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(t.Placement||(t.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(t.Availability||(t.Availability={}))},6568:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8778)),n(a(8741)),n(a(3404)),n(a(5817))},8741:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(t.FlexibleColumnLayoutAggregations||(t.FlexibleColumnLayoutAggregations={})),t.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V4="sap.fe.templates",t.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",t.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",t.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",t.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",t.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(t.SectionPositionV4||(t.SectionPositionV4={}))}},t={};var a=function a(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,a),o.exports}(390);module.exports=a})();
@@ -5,6 +5,7 @@ import { Page as PageV4 } from './specification/v4/page';
5
5
  import { FileData, File, ExportResults, ServiceMetadata } from './sync/common/types';
6
6
  import { ApplicationV2, ObjectPageConfig as ObjectPageConfigV2, ListReportConfig as ListReportConfigV2, OverviewPageConfig as OverviewPageConfigV2, AnalyticalListPageConfig as AnalyticalListPageConfigV2, Manifest as ManifestV2, FlexChangeLayer } from './v2';
7
7
  import { ApplicationV4, ObjectPageConfig as ObjectPageConfigV4, ListReportConfig as ListReportConfigV4, Manifest as ManifestV4 } from './v4';
8
+ import { ConverterOutput } from '@sap-ux/vocabularies-types';
8
9
  export declare type MessageMetadataType = (object | string | number)[];
9
10
  /**
10
11
  * Interface used to define a logger for the specificaton API
@@ -279,6 +280,13 @@ export interface ImportProjectParameters {
279
280
  fragments?: FileData[];
280
281
  logger?: ExtensionLogger;
281
282
  }
283
+ export interface GenerateAppSchemaParameters {
284
+ manifest: ManifestV2 | ManifestV4;
285
+ serviceAVT: ConverterOutput;
286
+ fioriElementsVersion: FioriElementsVersion;
287
+ fragments?: FileData[];
288
+ logger?: ExtensionLogger;
289
+ }
282
290
  /**
283
291
  * API Version
284
292
  */
@@ -217,10 +217,6 @@ export interface StackCard {
217
217
  * Represents the properties that are passed to the stack card.
218
218
  */
219
219
  stackCardSettings: StackCardSettings;
220
- /**
221
- * Represents the Stack Card with view switch control.
222
- */
223
- tabs?: [TabSetting, ...TabSetting[]];
224
220
  }
225
221
  /**
226
222
  * Link List Card
@@ -240,10 +236,6 @@ export interface LinklistCard {
240
236
  * Represents the properties that are passed to the link list card.
241
237
  */
242
238
  linkListCardSettings: LinkListCardSettings;
243
- /**
244
- * Represents the card with view switch control.
245
- */
246
- tabs?: [TabSetting, ...TabSetting[]];
247
239
  }
248
240
  /**
249
241
  * Table Card
@@ -1 +1 @@
1
- {"version":3,"file":"Card.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Card.ts"],"names":[],"mappings":";;AAqHA,IAAY,aAIX;AAJD,WAAY,aAAa;IACrB,0CAAyB,CAAA;IACzB,kDAAiC,CAAA;IACjC,oDAAmC,CAAA;AACvC,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB;AAED,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IACxB,kEAA8C,CAAA;IAC9C,uEAAmD,CAAA;IACnD,+CAA2B,CAAA;IAC3B,oDAAgC,CAAA;IAChC,uDAAmC,CAAA;IACnC,4DAAwC,CAAA;IACxC,iDAA6B,CAAA;IAC7B,sDAAkC,CAAA;IAClC,iDAA6B,CAAA;AACjC,CAAC,EAVW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAU3B;AAEY,QAAA,mBAAmB,GAAG;IAC/B,iCAAiC,EAAE,gBAAgB;IACnD,oCAAoC,EAAE,gBAAgB;IACtD,oBAAoB,EAAE,UAAU;IAChC,uBAAuB,EAAE,UAAU;IACnC,wBAAwB,EAAE,cAAc;IACxC,2BAA2B,EAAE,cAAc;IAC3C,qBAAqB,EAAE,WAAW;IAClC,wBAAwB,EAAE,WAAW;IACrC,qBAAqB,EAAE,WAAW;CACrC,CAAC;AAEF,IAAY,gBASX;AATD,WAAY,gBAAgB;IACxB,qEAAiD,CAAA;IACjD,yEAAqD,CAAA;IACrD,yDAAqC,CAAA;IACrC,6DAAyC,CAAA;IACzC,2DAAuC,CAAA;IACvC,iEAA6C,CAAA;IAC7C,2DAAuC,CAAA;IACvC,+DAA2C,CAAA;AAC/C,CAAC,EATW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAS3B;AAED,IAAY,sBAMX;AAND,WAAY,sBAAsB;IAC9B,6CAAmB,CAAA;IACnB,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,0CAAgB,CAAA;AACpB,CAAC,EANW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAMjC;AA8TD,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,uCAAqB,CAAA;IACrB,6BAAW,CAAA;IACX,uCAAqB,CAAA;AACzB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAED,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;AAC3B,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB;AAED,IAAY,aAGX;AAHD,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,0CAAyB,CAAA;AAC7B,CAAC,EAHW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAGxB;AAiID,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;AACzB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B"}
1
+ {"version":3,"file":"Card.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Card.ts"],"names":[],"mappings":";;AAqHA,IAAY,aAIX;AAJD,WAAY,aAAa;IACrB,0CAAyB,CAAA;IACzB,kDAAiC,CAAA;IACjC,oDAAmC,CAAA;AACvC,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB;AAED,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IACxB,kEAA8C,CAAA;IAC9C,uEAAmD,CAAA;IACnD,+CAA2B,CAAA;IAC3B,oDAAgC,CAAA;IAChC,uDAAmC,CAAA;IACnC,4DAAwC,CAAA;IACxC,iDAA6B,CAAA;IAC7B,sDAAkC,CAAA;IAClC,iDAA6B,CAAA;AACjC,CAAC,EAVW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAU3B;AAEY,QAAA,mBAAmB,GAAG;IAC/B,iCAAiC,EAAE,gBAAgB;IACnD,oCAAoC,EAAE,gBAAgB;IACtD,oBAAoB,EAAE,UAAU;IAChC,uBAAuB,EAAE,UAAU;IACnC,wBAAwB,EAAE,cAAc;IACxC,2BAA2B,EAAE,cAAc;IAC3C,qBAAqB,EAAE,WAAW;IAClC,wBAAwB,EAAE,WAAW;IACrC,qBAAqB,EAAE,WAAW;CACrC,CAAC;AAEF,IAAY,gBASX;AATD,WAAY,gBAAgB;IACxB,qEAAiD,CAAA;IACjD,yEAAqD,CAAA;IACrD,yDAAqC,CAAA;IACrC,6DAAyC,CAAA;IACzC,2DAAuC,CAAA;IACvC,iEAA6C,CAAA;IAC7C,2DAAuC,CAAA;IACvC,+DAA2C,CAAA;AAC/C,CAAC,EATW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAS3B;AAED,IAAY,sBAMX;AAND,WAAY,sBAAsB;IAC9B,6CAAmB,CAAA;IACnB,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,0CAAgB,CAAA;AACpB,CAAC,EANW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAMjC;AAsTD,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,uCAAqB,CAAA;IACrB,6BAAW,CAAA;IACX,uCAAqB,CAAA;AACzB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAED,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;AAC3B,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB;AAED,IAAY,aAGX;AAHD,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,0CAAyB,CAAA;AAC7B,CAAC,EAHW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAGxB;AAiID,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;AACzB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B"}
@@ -1,8 +1,8 @@
1
1
  /**
2
- * DataField
2
+ * Field
3
3
  * @isViewNode true
4
4
  */
5
- export interface DataField {
5
+ export interface Field {
6
6
  /**
7
7
  * Whether the field should be visible on the screen.
8
8
  */
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=DataField.js.map
3
+ //# sourceMappingURL=Field.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Field.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Field.ts"],"names":[],"mappings":""}