@sap/ux-specification 1.90.13 → 1.96.0

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 (111) hide show
  1. package/CHANGELOG.md +3 -298
  2. package/README.md +1 -0
  3. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  4. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  5. package/dist/documentation/v2/v2-ListReport.html +1 -1
  6. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  7. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  8. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  9. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  10. package/dist/documentation/v4/v4-ListReport.html +1 -1
  11. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  12. package/dist/index-min.js +1 -1
  13. package/dist/index-min.js.LICENSE.txt +71 -0
  14. package/dist/schemas/v2/AnalyticalListPageConfig.json +6 -4
  15. package/dist/schemas/v2/ListReportConfig.json +16 -9
  16. package/dist/schemas/v2/ObjectPageConfig.json +12 -10
  17. package/dist/schemas/v4/AnalyticalListPageConfig.json +3 -0
  18. package/dist/schemas/v4/ListReportConfig.json +3 -0
  19. package/dist/scripts/to-json-schema.js +11 -2
  20. package/dist/scripts/to-json-schema.js.map +1 -1
  21. package/dist/specification/v2/index-min.js +1 -1
  22. package/dist/specification/v4/index-min.js +1 -1
  23. package/dist/src/api.d.ts +9 -1
  24. package/dist/src/api.js +18 -1
  25. package/dist/src/api.js.map +1 -1
  26. package/dist/src/apiTypes.d.ts +15 -0
  27. package/dist/src/apiTypes.js +10 -0
  28. package/dist/src/apiTypes.js.map +1 -1
  29. package/dist/src/index.js +1 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/specification/v2/controls/FilterBar.d.ts +12 -6
  32. package/dist/src/specification/v2/controls/FormAction.d.ts +4 -20
  33. package/dist/src/specification/v2/controls/FormAction.js +0 -17
  34. package/dist/src/specification/v2/controls/FormAction.js.map +1 -1
  35. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +2 -5
  36. package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -5
  37. package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +1 -1
  38. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +4 -4
  39. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +3 -2
  40. package/dist/src/specification/v2/controls/Table.d.ts +3 -15
  41. package/dist/src/specification/v2/controls/Table.js +0 -15
  42. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  43. package/dist/src/specification/v2/controls/index.js +0 -2
  44. package/dist/src/specification/v2/controls/index.js.map +1 -1
  45. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -2
  46. package/dist/src/specification/v4/controls/Table.d.ts +1 -0
  47. package/dist/src/sync/common/generate/index.d.ts +1 -0
  48. package/dist/src/sync/common/generate/index.js +1 -0
  49. package/dist/src/sync/common/generate/index.js.map +1 -1
  50. package/dist/src/sync/common/generate/objectPage.js +21 -20
  51. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  52. package/dist/src/sync/common/generate/utils.d.ts +66 -0
  53. package/dist/src/sync/common/generate/utils.js +205 -0
  54. package/dist/src/sync/common/generate/utils.js.map +1 -0
  55. package/dist/src/sync/common/importProject.js +10 -10
  56. package/dist/src/sync/common/importProject.js.map +1 -1
  57. package/dist/src/sync/common/utils.d.ts +2 -29
  58. package/dist/src/sync/common/utils.js +24 -122
  59. package/dist/src/sync/common/utils.js.map +1 -1
  60. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +6 -3
  61. package/dist/src/sync/v2/export/controls/FilterBar.js +24 -11
  62. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  63. package/dist/src/sync/v2/export/controls/FormAction.d.ts +8 -7
  64. package/dist/src/sync/v2/export/controls/FormAction.js +15 -53
  65. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
  66. package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +3 -2
  67. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
  68. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +5 -4
  69. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  70. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +3 -2
  71. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  72. package/dist/src/sync/v2/export/controls/Table.d.ts +3 -2
  73. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  74. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +3 -2
  75. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  76. package/dist/src/sync/v2/export/exportPage.js +3 -2
  77. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  78. package/dist/src/sync/v2/export/pages/ListReport.d.ts +2 -2
  79. package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
  80. package/dist/src/sync/v2/generate/analyticalListReport.js +6 -3
  81. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  82. package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
  83. package/dist/src/sync/v2/generate/listReport.js +18 -3
  84. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  85. package/dist/src/sync/v2/generate/objectPage.js +19 -14
  86. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  87. package/dist/src/sync/v2/generate/utils.js +3 -3
  88. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  89. package/dist/src/sync/v2/import/common/index.js +1 -1
  90. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  91. package/dist/src/sync/v2/import/pages/listReport.js +2 -2
  92. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  93. package/dist/src/sync/v2/import/pages/objectPage.js +29 -29
  94. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  95. package/dist/src/sync/v4/export/export.js +18 -14
  96. package/dist/src/sync/v4/export/export.js.map +1 -1
  97. package/dist/src/sync/v4/export/types.d.ts +1 -0
  98. package/dist/src/sync/v4/generate/listReport.d.ts +2 -1
  99. package/dist/src/sync/v4/generate/listReport.js +47 -1
  100. package/dist/src/sync/v4/generate/listReport.js.map +1 -1
  101. package/dist/src/sync/v4/generate/objectPage.js +102 -52
  102. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  103. package/dist/src/sync/v4/import/app/appProvider.js +2 -2
  104. package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
  105. package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -3
  106. package/dist/src/sync/v4/utils/StableIdHelper.js +9 -11
  107. package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
  108. package/dist/src/sync/v4/utils/utils.d.ts +1 -8
  109. package/dist/src/sync/v4/utils/utils.js +28 -54
  110. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  111. package/package.json +20 -14
package/CHANGELOG.md CHANGED
@@ -4,88 +4,15 @@ All notable changes to this project are documented in this file.
4
4
 
5
5
  This project adheres to [Semantic Versioning](http://semver.org/) and the changelog is formatted based on [Keep a Changelog](http://keepachangelog.com/).
6
6
 
7
- ## [1.90.13] - 2021-10-20
7
+ ## [1.96.0] - 2021-12-02
8
8
 
9
9
  ### Added
10
10
 
11
- - OData V2:
12
- - Support for (Sub)Section properties: `visible`.
13
- - ALP: Schema now comprises of entity properties for config `createWithParameterDialog`->`fields`
14
- - OP: Added support for multiple flex changes in Form and Header Actions
15
- - V2 & V4: Footer actions are now part of the schema. A node for header actions is visible even if there are no actions yet.
11
+ In comparison to release 1.90, this release also comprises an API generateCustomExtension, refer to the README.
16
12
 
17
13
  ### Changed
18
14
 
19
- - OData V2:
20
- - Enhanced sync logic to use generic approach for handling unknown properties. As a result sync logic is more robust and handles more unknown properties.
21
-
22
- ### Removed
23
-
24
- - OData V2:
25
- - OVP: Removed `tab` property from `Stack` and `Link List` cards as view switch control is not supported
26
-
27
- ### Deprecated
28
-
29
- ### Fixed
30
-
31
- - OData V4:
32
- - Pages Schema. Exception if path in UI.SelectionFields is not valid.
33
- - Object page sections referring to UI.Identification with qualifer shall show actions besides the fields.
34
- - V2 & V4:
35
- - replace alias of namespace definitions of header actions even for references that are not related to OData vocabularies.
36
- - Add `visible` property to DataField types
37
- - annotationPath definitions of header and footer actions.
38
-
39
- ### Quality
40
-
41
- - Settings for sonarlint have been added.
42
- - Upgrade of Annotation Vocabularies Tools.
43
- - Fix of code smells reported by SonarQube.
44
-
45
- ## [1.90.12] - 2021-10-18
46
-
47
- ### Fixed
48
-
49
- For some V4 apps, the export of property changes failed due to invalid schema definitions.
50
-
51
- ## [1.90.11] - 2021-10-06
52
-
53
- ### Added
54
-
55
- - Annotation path com.sap.vocabularies.UI.v1.HeaderInfo added to ObjectPageHeader in V2 and V4.
56
- - Added `i18nClassification` for `title`, `description` properties for `App.json` schema in V2 and V4.
57
- - OData V4: Header actions are now part of the Object Page schema.
58
- - OData V2:
59
- - OVP: Added support for property `annotationPath` in Linklist card settings.
60
- - OVP: property `requireAppAuthorization` is now supported for all card types.
61
-
62
- ### Changed
63
-
64
- - README file updated.
65
- - Order and naming of view nodes for the V2 Object Page adapted.
66
- - Pattern for binding changes in V2: there are now two different patterns for List Report and Object Page; the one for the Object Page provides the additional enum values "{ui>/editable}" and "{= !${ui>/editable}}"
67
-
68
- ### Fixed
69
-
70
- - V4: if one section comprises a field group without qualifier, and one referred to UI.Identification, the properties of the field group had been displayed for Identification section of header facet as well.
71
-
72
- ### Quality
73
-
74
- - Fix of vulnerabilities by upgrade of npm modules.
75
- - Fix of bugs nd code smells reported by SonarQube.
76
-
77
- ## [1.90.10] - 2021-09-22
78
-
79
- ### Added
80
-
81
- - New html files showing a graphical representation of the content of each generic schema.
82
- - OData V2:
83
- - We show field groups and fields now as part of the object page schema, and allow the maintenance of the visible property for fields.
84
- - Support of property `flexEnabled`on app level.
85
-
86
- ### Changed
87
-
88
- - The default for titles and labels of schema nodes - in case of missing annotation labels - has been adapted, for facets and header facets. There will be node-specific content now in all cases instead of generic defaults like "Form".
15
+ The api version (getApiVersion) is increased to 2 to reflect the presence of the new generateCustomExtension API.
89
16
 
90
17
  ### Removed
91
18
 
@@ -93,226 +20,4 @@ For some V4 apps, the export of property changes failed due to invalid schema de
93
20
 
94
21
  ### Fixed
95
22
 
96
- - OData V2:
97
- - Invalid flexChanges are now ignored during sync, hence configs and pages files are created.
98
- - OData V4:
99
- - Exception occurred in case of invalid custom page definitions in manifest
100
- - Page determination went wrong in case of irregular ordering of routing targets
101
-
102
- ### Quality
103
-
104
- - Bugs & code smells removed that had been detected by SonarQube
105
-
106
- ## [1.90.9] - 2021-09-08
107
-
108
- ### Added
109
-
110
- - OData V4:
111
- - Header Facets are now shown in the schemas and configs, along with their actual manifest settings.
112
- - OData V2:
113
- - OVP: Added support for property `dataPointAnnotationPath` in ListCard settings
114
- - OVP: Added support for OData V4 Link List Card
115
-
116
- ### Fixed
117
-
118
- - OData V4: Import and export of Custom Page properties could get out of sync when specific properties were missing.
119
-
120
- ## [1.90.8] - 2021-08-25
121
-
122
- ### Added
123
-
124
- - OData V4:
125
- - Added support for `AnayticalTable`
126
- - Enhanced sync logic to avoid export of properties unknown to specification module to avoid modification in manifest.json
127
- - Added support for new Custom Page syntax
128
- - Added test for function `convertInterfaces` to increase test coverage
129
- - Added flexchange layer information to API interface
130
-
131
- ### Changed
132
-
133
- - OData V2: Unresolvable facets are not returned by schema to avoid creation of corrupted custom sections
134
-
135
- ### Fixed
136
-
137
- - Object Page schema generation crash when 'Facets' entry is not defined for 'CollectionFacet'
138
- - Page schema generation - `annotationPath` was missing for `table/toolbar`
139
-
140
- ## [1.90.7] - 2021-08-12
141
-
142
- ### Added
143
-
144
- - OData V2:
145
- - Added description property to header actions in schema
146
- - Table toolbar as structure node
147
- - Added properties showClearOnFB, showFilterConfiguration and showRestoreOnFB to the FilterBar
148
-
149
- - OData V4:
150
- - Table toolbar as structure node
151
- - enableOnSelect as property for table toolbar
152
-
153
- - Developer guide for contributors to this module
154
-
155
- - Actualization of JS-DOC
156
-
157
- - Enhanced error handling of API functions.
158
-
159
- - The generic schema is enhanced by the following information:
160
- - artifact type (manifest setting, flex change or annotation)
161
- - in case of flex change: control name
162
-
163
- ### Changed
164
-
165
- - The node Selection Fields was renamed to Filter Fields, in accordance with the UI.
166
-
167
- - The generic schemas now already comprise anyOf definitions for enums of type string that allow binding changes. Previously this was only added during the generation of app specific schemas.
168
-
169
- ### Fixed
170
-
171
- - A common function was introduced to resolve path references of Common.Label annotations; endless loop references are interjected, the variable value or key is returned in this case.
172
- - Enhance function determineTableType to also check for presence of old tableType flag in manifest.json
173
- - OData V2:
174
- - ALP: Use correct Id for flex changes generated in case of Filter Bar
175
-
176
23
  ### Quality
177
-
178
- - Refactor interfaces and class definitions for ALP tables
179
-
180
- ## [1.90.6] - 2021-07-28
181
-
182
- ### Added
183
-
184
- - OData V2: dateSettings property of Filterbar now supports addtional values
185
- - OData V2: Added growingThreshold property to Responsive Tables
186
-
187
- ### Fixed
188
-
189
- - When starting the app modeler for certain CDS projects, an exception occurs, and no pages nor schemas are listed.
190
- - Modified regex used in binding properties to avoid issues with Shebang plugin during consumption of specification module.
191
-
192
- ### Quality
193
-
194
- - Upgrade of Annotation Vocabularies Tools to version 0.3.28
195
-
196
- ## [1.90.5] - 2021-07-14
197
-
198
- ### Added
199
-
200
- - annotationPath is added to the selectionFields node.
201
-
202
- ### Changed
203
-
204
- - The import functions for filling the content of config files are now instantiating the required metadata based on factory classes (that had been introduced for the export before).
205
-
206
- ### Fixed
207
-
208
- - In the annotationPath of columns, qualifiers had not been added.
209
- - The namespace of the entity type is now present in all annotation paths.
210
- - Changing binding value to false removed flex changes from the file system.
211
- - The logic for section generation in app schemas did not consider qualifiers correctly.
212
-
213
- ### Quality
214
-
215
- - Missing path to types in package.json was added. This is required because after introducing bundling with webpack, the index.d.ts file is not next to index-min.js
216
-
217
- ## [1.90.4] - 2021-06-30
218
-
219
- ### Added
220
-
221
- - New structure elements at the Filterbar that represent the selection fields resulting from the UI.SelectionFields annotation.
222
-
223
- ### Changed
224
-
225
- - In the annotationPath information of the generated JSON schemas all alias definitions are now replaced by the full vocabulary name.
226
- - Descriptions in the schema now follow the following paradigm:
227
- - For facets we need use title and description, the export logic takes the title and extracts the facet key from it for concatenating the stable ID. The text that shall be shown in the Page Editor shall be the description.
228
- - Thus we now generalise: all view nodes (isViewNode = true) have a description (but do not necessarily need a title).
229
- - Properties (no isViewNode tag) are not listed in the outline, but in the properties panel. Here, the title shall be used as a label, and the description shall be shown on hover (old UI) or rendered directly (new UI).
230
-
231
- ### Removed
232
-
233
- - OData V4: remove initialLoad property from Object Page config
234
-
235
- ### Fixed
236
-
237
- - The deletion of a custom section from the config file was not reflected in manifest.json.
238
- - New page export fails if parent page does not have navigation property defined.
239
- - Navigation is not cleared if we remove last associated page.
240
- - The import of unknow flex change properties into the config is now avoided.
241
- - The export of flex changes sometimes generated multiple flex changes into the dev workspace.
242
- - The script for extracting documentation had neglected patternProperties of the schemas.
243
- - An exception occurred in case of invalid annotation references, the schemas and config files were not generated in this case.
244
- - Too many actions had been listed as table columns: now it is restricted to the inline actions.
245
-
246
- ## [1.90.3] - 2021-06-28
247
-
248
- ### Fixed
249
-
250
- - The build result did not comprise the type definitions anymore. They are available again now.
251
-
252
- ## [1.90.2] - 2021-06-17
253
-
254
- ### Added
255
-
256
- - annotationPath added as metadata to the columns in JSON schema.
257
-
258
- ### Changed
259
-
260
- - The enum for fragment names of column extension is more restrictive now, it does not comprise cells anymore.
261
- - webpack uglify function names.
262
-
263
- ### Fixed
264
-
265
- - During the export of V4 configs, manifest sections were created from scratch; this led to a deletion of properties that are not considered (yet) by the specification module.
266
- - Fix for launch config Import project which can be used to debug the import of a project.
267
- - During the export, fragments are not deleted anymore, as they may comprise customer coding.
268
- - If a fragment is not present yet, it gets created now, i.e. added with a <root> prefix to the list of fragments.
269
- - yarn watch allows debugging of custom extensions now, as the templates are available again in the dist folder.
270
- - Correct sync logic to make sure that config changes are written only to desired places in manifest.json
271
- - An exception had occured in case of invalid target annotation paths, this is caught now.
272
- - OData V4 - Correct sync logic so that custom sections entry in manifest.json gets deleted if entry is deleted from page config
273
- - OData V4 - Correct sync logic, page add was not added if 'navigation' property missing in 'manifest.json'.
274
- - OData V4 - Correct sync logic, page deletion, 'navigation' property was not cleared if there was no an navigation left.
275
- - OData V2 - Flex changes not supported by specification module remain unaffected by the sync logic
276
- - OData V2 - Fix sync logic to avoid creation of duplicate flex changes in case of Object Page tables
277
- - OData V2 - ALP: Improved sync logic as some of the supported flex chagnes were not imported to config files
278
-
279
- ## [1.90.1] - 2021-06-03
280
-
281
- ### Changed
282
-
283
- - The access to reflect metadata is now centralized in factory classes and thus runs in a generic way in most situations.
284
-
285
- ### Fixed
286
-
287
- - Path references of labels had not been resolved correctly. Common.label annotations of the target reference are now considered correctly.
288
- - The regex pattern for binding changes was incomplete, resulting in validation errrors.
289
- - OData V4: Enhance sync logic to ensure only properties that are supported by specification module are modified in the manifest.json
290
-
291
- ### Quality
292
-
293
- Upgrades of dependencies to:
294
-
295
- - "ts-loader": 9.1.2
296
- - node version 12
297
- - "webpack": 5.37.1
298
- - "chalk": "4.1.1"
299
- - "ejs": "3.1.6"
300
- - "i18next": "20.3.1"
301
- - "ts-json-schema-generator": "0.93.0"
302
-
303
- Added resolutions for
304
-
305
- - "glob-parent": "^5.1.2"
306
- - "normalize-url": "^6.0.1"
307
- - "ws": "^7.4.6"
308
- - "trim-newlines": "^3.0.1"
309
-
310
- ## [1.90.0] - 2021-05-20
311
-
312
- ### Added
313
-
314
- First specification version for SAPUI5 release 1.90 and later.
315
-
316
- ### Changed
317
-
318
- - The initialLoad setting of V4 tables is now an enum with three different options, in accordance with sap.fe.
package/README.md CHANGED
@@ -29,6 +29,7 @@ Besides the specification, src/api.ts provides functions that can be used with S
29
29
  - importProject: imports information from the app and generates all schemas and JSON configuration files.
30
30
  - importProjectSchema: imports information from the app and generates all schemas but no JSON configuration files.
31
31
  - getApiVersion: returns the given API version. The API version starts with 1 and will only be increased in case of incompatible changes where the consumption layer must react on.
32
+ - generateCustomExtension: generates custom extensions, e.g. Custom Page, Custom Column etc. for a V4 application by using the `@sap-ux/fe-fpm-writer`.
32
33
 
33
34
  When calling any API function you may pass a logger instance for collecting any messages. The interface of your logger must fit to the ExtensionLogger definition. If no logger is passed, the output channel for messages is the console.
34
35
 
@@ -44,6 +44,6 @@
44
44
  var exports = {},
45
45
  floorPlanIcon = `<svg id="floorPlan-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
46
46
  <g><path fill-rule="evenodd" clip-rule="evenodd" fill="#C5C5C5"d="M9 13V14H6V13H9ZM5 13V14H2V13H5ZM13 13V14H10V13H13ZM9 11V12H6V11H9ZM5 11V12H2V11H5ZM13 11V12H10V11H13ZM5 9V10H2V9H5ZM9 9V10H6V9H9ZM13 9V10H10V9H13ZM3.986 1.998V6.024H1.965V1.998H3.986ZM6.99 4.01V6.01H4.99V4.01H6.99ZM10.008 3.019V6.01H8.008V3.019H10.008ZM13.005 1.998V6.011H11.005V1.998H13.005ZM1 14.988H14.988V7.995H1V14.988ZM1.001 6.994H14.989V1H1.001V6.994ZM1.00169 0C0.449309 0 0 0.448336 0 1.00075V14.9992C0 15.5517 0.449309 16 1.00169 16H14.9993C15.5517 16 16 15.5517 16 14.9992V1.00075C16 0.448336 15.5517 0 14.9993 0H1.00169Z"/></g></svg>`;
47
- var treeData = {"name":"AnalyticalListPage","description":"SAP Fiori elements v2<br>Specification Version: 1.90.13","type":"schema","children":[{"name":"fitContent","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.f.DynamicPage","description":"Set fitContent to true to optimize the dynamic page responsiveness on small screens and behavior when the DynamicPageHeader is expanded or collapsed."},{"name":"table","children":[{"name":"type","children":[],"type":"string","artifact":"Manifest","description":"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."},{"name":"growingThreshold","children":[],"type":"number","artifact":"FlexChange","control":"sap.m.Table","description":"growingThreshold defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true."},{"name":"qualifier","children":[],"type":"string","artifact":"Manifest","description":"Represents the SelectionPresentationVariant qualifier. ALP looks for SelectionPresentationVariant with this qualifier and if not found, it looks for PresentationVariant with this qualifier."},{"name":"defaultContentView","children":[],"type":"chart|charttable|table","artifact":"Manifest","description":"Determines the visualization of content area"},{"name":"defaultFilterMode","children":[],"type":"compact|visual","artifact":"Manifest","description":"Determines the filter mode that is used"},{"name":"contentTitle","children":[],"type":"string","artifact":"Manifest","description":"Lets you define title for the content area"},{"name":"autoHide","children":[],"type":"boolean","artifact":"Manifest","description":"This setting allows developer to determine chart / table interaction. 'true' would mean chart act as filter for table, 'false' would mean that matching table rows are highlighted but table is not filtered."},{"name":"filterDefaultsFromSelectionVariant","children":[],"type":"boolean","artifact":"Manifest","description":"Lets you to add default values for FilterBar using SelectionVariant annotation"},{"name":"allFiltersAsInParameters","children":[],"type":"boolean","artifact":"Manifest","description":"All filter fields will be set as in parameter"},{"name":"multiSelect","children":[],"type":"boolean","artifact":"Manifest","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"createWithParameterDialog","children":[{"name":"fields","children":[{"name":"path","children":[],"type":"string","artifact":"Manifest"}]}],"type":"object","artifact":"Manifest","description":"You can enable the creation of objects that have a maximum of 8 data fields through a dialog in the list report page."},{"name":"selectAll","children":[],"type":"boolean","artifact":"Manifest","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","artifact":"Manifest","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"showTablePersonalisation","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"The showTablePersonalisation attribute can be set to false to hide the table personalization button."},{"name":"useExportToExcel","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel."},{"name":"fitContainer","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"Set to false if the table does not occupy the entire space available in the container."},{"name":"quickVariantSelection","children":[{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."}],"type":"object","artifact":"Manifest","description":"With quickVariantSelection you can switch on the multiple view feature. It links to variants you must have added to your annotations beforehand."},{"name":"quickVariantSelectionX","children":[{"name":"enableAutoBinding","children":[],"type":"boolean","artifact":"Manifest","description":"When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"entitySet","children":[],"type":"string","description":"Represents the entity set that will be displayed in this variant"},{"name":"multiSelect","children":[],"type":"boolean","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"selectAll","children":[],"type":"boolean","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"type","children":[],"type":"string","description":"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."},{"name":"showItemNavigationOnChart","children":[],"type":"boolean","description":"To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest."},{"name":"inlineDelete","children":[],"type":"boolean","description":"Used to enable inline deletion in a responsive table of list report and object page"},{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."},{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."}],"type":"object","artifact":"Manifest","description":"Switch on the multiple view feature (Multiple table mode with charts) and link to the variants you have added to your annotations."},{"name":"condensedTableLayout","children":[],"type":"boolean","artifact":"Manifest","description":"For analytical tables, grid tables and tree tables you can define a condensed table layout by setting condensedTableLayout to true."},{"name":"enableTableFilterInPageVariant","children":[],"type":"boolean","artifact":"Manifest","description":"If you have enabled harmonized variant management, by default, you cannot set a filter in the table personalization settings.\nTo enable filtering, set the enableTableFilterInPageVariant property to true."},{"name":"dataLoadSettings","children":[{"name":"loadDataOnAppLaunch","children":[],"type":"always|ifAnyFilterExist|never","artifact":"Manifest","description":"Change the default behavior for autoloading of data.\nFor multi-view scenarios, you can also change the setting enableAutobinding to False under quickVariantSelectionX instead of using the loadDataOnAppLaunch setting."}],"type":"object","artifact":"Manifest","description":"Change the default behavior for autoloading of data."},{"name":"toolBar","children":[{"name":"actions","children":[{"name":"tooltip","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Text for tooltip of button"},{"name":"icon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","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."},{"name":"activeIcon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI."},{"name":"type","children":[],"type":"Accept|Attention|Back|Critical|Default|Emphasized|Ghost|Negative|Neutral|Reject|Success|Transparent|Unstyled|Up","artifact":"FlexChange","control":"sap.m.Button","description":"Defines the Button type."},{"name":"visible","children":[],"type":"string","description":"Whether the button should be visible on the screen."}]}],"type":"object","description":"Tool Bar"},{"name":"columns","children":[{"name":"columnId","children":[{"name":"width","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Column","description":"The width property defines the width of the column."},{"name":"hAlign","children":[],"type":"string","description":"The hAlign property defines the horizontal alignment of the column content."}],"type":"object","description":"Columns"}]}]},{"name":"filterBar","children":[{"name":"showGoButtonOnFilterBar","children":[],"type":"boolean","artifact":"Manifest","description":"Go button is displayed for compact filters when this is set to true"},{"name":"smartVariantManagement","children":[],"type":"boolean","artifact":"Manifest","description":"Controls whether smart variant management is active. Default is true."},{"name":"liveMode","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"If liveMode is set, the search will be automatically triggered when a filter value is set."},{"name":"variantManagementHidden","children":[],"type":"boolean","artifact":"Manifest","description":"If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf you set the flag to false or if the flag is not at all contained in the manifest of the app, the standard variant management is available and can be enabled or disabled."},{"name":"subTitleIfVariantMgmtHidden","children":[],"type":"string","artifact":"Manifest","description":"You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property."},{"name":"dateSettings","children":[{"name":"useDateRange","children":[],"type":"boolean","artifact":"Manifest","description":"If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters."},{"name":"selectedValues","children":[],"type":"array","artifact":"Manifest","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","artifact":"Manifest","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"fields","children":[{"name":"selectedValues","children":[],"type":"array","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"customDateRangeImplementation","children":[],"type":"string","description":"This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types."},{"name":"filter","children":[],"type":"array","description":"You can use the filter settings to include and exclude specific date range values."}],"type":"object","artifact":"Manifest","description":"For a fields' list you can define the set of standard date range values separately."}],"type":"object","artifact":"Manifest","description":"Use to set date settings for fields in smart filter bar"},{"name":"showClearOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Clear button on the FilterBar."},{"name":"showFilterConfiguration","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Filter button on the FilterBar."},{"name":"showRestoreOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Restore button on the FilterBar."}]},{"name":"chart","children":[{"name":"showLegendButton","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Controls the visibility of the legend button."},{"name":"showDownloadButton","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Controls the visibility of the chart download button."},{"name":"showChartTypeSelectionButton","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Controls the visibility of the chart type button."},{"name":"ignoredChartTypes","children":[],"type":"array","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Comma-separated value fields do not showup in the list of available chart types."},{"name":"showDataLabel","children":[],"type":"boolean","artifact":"Manifest","description":"Controls the visibility of the data label."}]},{"name":"keyPerformanceIndicators","children":[{"name":"model","children":[],"type":"string","artifact":"Manifest","description":"Links to the item in \"models\" section which provides additional information"},{"name":"entitySet","children":[],"type":"string","artifact":"Manifest","description":"EntitySet used for bringing up the details displayed within the KPI tag/card"},{"name":"qualifier","children":[],"type":"string","artifact":"Manifest","description":"Refers to the UI.KPI annotation"},{"name":"filterable","children":[],"type":"boolean","artifact":"Manifest","description":"It ensures that KPI shows up as filterable"},{"name":"detailNavigation","children":[],"type":"string","artifact":"Manifest","description":"Points to an element within \"outbound\" property of the \"crossNavigation\" section"},{"name":"groupId","children":[],"type":"string","artifact":"Manifest","description":"To achieve faster end-to-end response time within analytical list page, enable batching of KPI by defining groupId in the KPI section of the descriptor configuration file"}],"type":"object","description":"Key Performance Indicators"}]};
47
+ var treeData = {"name":"AnalyticalListPage","description":"SAP Fiori elements v2<br>Specification Version: 1.96.0","type":"schema","children":[{"name":"fitContent","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.f.DynamicPage","description":"Set fitContent to true to optimize the dynamic page responsiveness on small screens and behavior when the DynamicPageHeader is expanded or collapsed."},{"name":"table","children":[{"name":"type","children":[],"type":"string","artifact":"Manifest","description":"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."},{"name":"growingThreshold","children":[],"type":"number","artifact":"FlexChange","control":"sap.m.Table","description":"growingThreshold defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true."},{"name":"qualifier","children":[],"type":"string","artifact":"Manifest","description":"Represents the SelectionPresentationVariant qualifier. ALP looks for SelectionPresentationVariant with this qualifier and if not found, it looks for PresentationVariant with this qualifier."},{"name":"defaultContentView","children":[],"type":"chart|charttable|table","artifact":"Manifest","description":"Determines the visualization of content area"},{"name":"defaultFilterMode","children":[],"type":"compact|visual","artifact":"Manifest","description":"Determines the filter mode that is used"},{"name":"contentTitle","children":[],"type":"string","artifact":"Manifest","description":"Lets you define title for the content area"},{"name":"autoHide","children":[],"type":"boolean","artifact":"Manifest","description":"This setting allows developer to determine chart / table interaction. 'true' would mean chart act as filter for table, 'false' would mean that matching table rows are highlighted but table is not filtered."},{"name":"filterDefaultsFromSelectionVariant","children":[],"type":"boolean","artifact":"Manifest","description":"Lets you to add default values for FilterBar using SelectionVariant annotation"},{"name":"allFiltersAsInParameters","children":[],"type":"boolean","artifact":"Manifest","description":"All filter fields will be set as in parameter"},{"name":"multiSelect","children":[],"type":"boolean","artifact":"Manifest","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"createWithParameterDialog","children":[{"name":"fields","children":[{"name":"path","children":[],"type":"string","artifact":"Manifest"}]}],"type":"object","artifact":"Manifest","description":"You can enable the creation of objects that have a maximum of 8 data fields through a dialog in the list report page."},{"name":"selectAll","children":[],"type":"boolean","artifact":"Manifest","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","artifact":"Manifest","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"showTablePersonalisation","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"The showTablePersonalisation attribute can be set to false to hide the table personalization button."},{"name":"useExportToExcel","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel."},{"name":"fitContainer","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"Set to false if the table does not occupy the entire space available in the container."},{"name":"quickVariantSelection","children":[{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."}],"type":"object","artifact":"Manifest","description":"With quickVariantSelection you can switch on the multiple view feature. It links to variants you must have added to your annotations beforehand."},{"name":"quickVariantSelectionX","children":[{"name":"enableAutoBinding","children":[],"type":"boolean","artifact":"Manifest","description":"When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"entitySet","children":[],"type":"string","description":"Represents the entity set that will be displayed in this variant"},{"name":"multiSelect","children":[],"type":"boolean","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"selectAll","children":[],"type":"boolean","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"type","children":[],"type":"string","description":"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."},{"name":"showItemNavigationOnChart","children":[],"type":"boolean","description":"To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest."},{"name":"inlineDelete","children":[],"type":"boolean","description":"Used to enable inline deletion in a responsive table of list report and object page"},{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."},{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."}],"type":"object","artifact":"Manifest","description":"Switch on the multiple view feature (Multiple table mode with charts) and link to the variants you have added to your annotations."},{"name":"condensedTableLayout","children":[],"type":"boolean","artifact":"Manifest","description":"For analytical tables, grid tables and tree tables you can define a condensed table layout by setting condensedTableLayout to true."},{"name":"enableTableFilterInPageVariant","children":[],"type":"boolean","artifact":"Manifest","description":"If you have enabled harmonized variant management, by default, you cannot set a filter in the table personalization settings.\nTo enable filtering, set the enableTableFilterInPageVariant property to true."},{"name":"dataLoadSettings","children":[{"name":"loadDataOnAppLaunch","children":[],"type":"always|ifAnyFilterExist|never","artifact":"Manifest","description":"Change the default behavior for autoloading of data.\nFor multi-view scenarios, you can also change the setting enableAutobinding to False under quickVariantSelectionX instead of using the loadDataOnAppLaunch setting."}],"type":"object","artifact":"Manifest","description":"Change the default behavior for autoloading of data."},{"name":"toolBar","children":[{"name":"actions","children":[{"name":"tooltip","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Text for tooltip of button"},{"name":"icon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","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."},{"name":"activeIcon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI."},{"name":"type","children":[],"type":"Accept|Attention|Back|Critical|Default|Emphasized|Ghost|Negative|Neutral|Reject|Success|Transparent|Unstyled|Up","artifact":"FlexChange","control":"sap.m.Button","description":"Defines the Button type."},{"name":"visible","children":[],"type":"string","description":"Whether the button should be visible on the screen."}]}],"type":"object","description":"Tool Bar"},{"name":"columns","children":[{"name":"columnId","children":[{"name":"width","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Column","description":"The width property defines the width of the column."},{"name":"hAlign","children":[],"type":"string","description":"The hAlign property defines the horizontal alignment of the column content."}],"type":"object","description":"Columns"}]}]},{"name":"filterBar","children":[{"name":"showGoButtonOnFilterBar","children":[],"type":"boolean","artifact":"Manifest","description":"Go button is displayed for compact filters when this is set to true"},{"name":"smartVariantManagement","children":[],"type":"boolean","artifact":"Manifest","description":"Controls whether smart variant management is active. Default is true."},{"name":"liveMode","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"If liveMode is set, the search will be automatically triggered when a filter value is set."},{"name":"variantManagementHidden","children":[],"type":"boolean","artifact":"Manifest","description":"If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf you set the flag to false or if the flag is not at all contained in the manifest of the app, the standard variant management is available and can be enabled or disabled."},{"name":"subTitleIfVariantMgmtHidden","children":[],"type":"string","artifact":"Manifest","description":"You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property."},{"name":"dateSettings","children":[{"name":"useDateRange","children":[],"type":"boolean","artifact":"Manifest","description":"If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters."},{"name":"selectedValues","children":[],"type":"array","artifact":"Manifest","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","artifact":"Manifest","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"fields","children":[{"name":"selectedValues","children":[],"type":"array","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"customDateRangeImplementation","children":[],"type":"string","description":"This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types."},{"name":"filter","children":[],"type":"array","description":"You can use the filter settings to include and exclude specific date range values."}],"type":"object","artifact":"Manifest","description":"For a fields' list you can define the set of standard date range values separately."}],"type":"object","artifact":"Manifest","description":"Use to set date settings for fields in smart filter bar"},{"name":"showClearOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Clear button on the FilterBar."},{"name":"showFilterConfiguration","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Filter button on the FilterBar."},{"name":"showRestoreOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Restore button on the FilterBar."}]},{"name":"chart","children":[{"name":"showLegendButton","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Controls the visibility of the legend button."},{"name":"showDownloadButton","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Controls the visibility of the chart download button."},{"name":"showChartTypeSelectionButton","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Controls the visibility of the chart type button."},{"name":"ignoredChartTypes","children":[],"type":"array","artifact":"FlexChange","control":"sap.ui.comp.smartchart.SmartChart","description":"Comma-separated value fields do not showup in the list of available chart types."},{"name":"showDataLabel","children":[],"type":"boolean","artifact":"Manifest","description":"Controls the visibility of the data label."}]},{"name":"keyPerformanceIndicators","children":[{"name":"model","children":[],"type":"string","artifact":"Manifest","description":"Links to the item in \"models\" section which provides additional information"},{"name":"entitySet","children":[],"type":"string","artifact":"Manifest","description":"EntitySet used for bringing up the details displayed within the KPI tag/card"},{"name":"qualifier","children":[],"type":"string","artifact":"Manifest","description":"Refers to the UI.KPI annotation"},{"name":"filterable","children":[],"type":"boolean","artifact":"Manifest","description":"It ensures that KPI shows up as filterable"},{"name":"detailNavigation","children":[],"type":"string","artifact":"Manifest","description":"Points to an element within \"outbound\" property of the \"crossNavigation\" section"},{"name":"groupId","children":[],"type":"string","artifact":"Manifest","description":"To achieve faster end-to-end response time within analytical list page, enable batching of KPI by defining groupId in the KPI section of the descriptor configuration file"}],"type":"object","description":"Key Performance Indicators"}]};
48
48
  </script>
49
49
  <script type="module" src="./../runDocu-min.js"></script>
@@ -43,6 +43,6 @@
43
43
  // placeholder for data
44
44
  var exports = {},
45
45
  floorPlanIcon;
46
- var treeData = {"name":"ApplicationV2","description":"SAP Fiori elements v2<br>Specification Version: 1.90.13","type":"schema","children":[{"name":"settings","children":[{"name":"title","children":[],"type":"string","description":"To change the application header, in your project artifacts, change the i18n property file for your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as {{appTitle}} in the sap.app section of the manifest file."},{"name":"description","children":[],"type":"string","description":"To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description as {{appDescription}} in the sap.app section of the manifest file."},{"name":"forceGlobalRefresh","children":[],"type":"boolean","description":"If forceGlobalRefresh is not explicitly set to false, a global model refresh is triggered when the annotated side effects are executed."},{"name":"flexibleColumnLayout","children":[],"type":"object","description":"The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas. For the overview page, this layout is not relevant."},{"name":"tableColumnVerticalAlignment","children":[],"type":"Bottom|Middle|Top","description":"tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table."},{"name":"flexEnabled","children":[],"type":"boolean","description":"The flexEnabled indicates if the application supports UI adaptation."}]}]};
46
+ var treeData = {"name":"ApplicationV2","description":"SAP Fiori elements v2<br>Specification Version: 1.96.0","type":"schema","children":[{"name":"settings","children":[{"name":"title","children":[],"type":"string","description":"To change the application header, in your project artifacts, change the i18n property file for your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as {{appTitle}} in the sap.app section of the manifest file."},{"name":"description","children":[],"type":"string","description":"To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description as {{appDescription}} in the sap.app section of the manifest file."},{"name":"forceGlobalRefresh","children":[],"type":"boolean","description":"If forceGlobalRefresh is not explicitly set to false, a global model refresh is triggered when the annotated side effects are executed."},{"name":"flexibleColumnLayout","children":[],"type":"object","description":"The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas. For the overview page, this layout is not relevant."},{"name":"tableColumnVerticalAlignment","children":[],"type":"Bottom|Middle|Top","description":"tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table."},{"name":"flexEnabled","children":[],"type":"boolean","description":"The flexEnabled indicates if the application supports UI adaptation."}]}]};
47
47
  </script>
48
48
  <script type="module" src="./../runDocu-min.js"></script>
@@ -44,6 +44,6 @@
44
44
  var exports = {},
45
45
  floorPlanIcon = `<svg id="floorPlan-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
46
46
  <g><path fill-rule="evenodd" clip-rule="evenodd" fill="#C5C5C5"d="M5 3.0028H2V2.0048H5V3.0028ZM6.0044 3.0028H9.0044V2.0048H6.0044V3.0028ZM10.0014 3.0028H13.0014V2.0048H10.0014V3.0028ZM1 14.993L0.997 4.995H14.988V14.988L1 14.993ZM14.988 0.995V3.994H0.996L0.995 1L14.988 0.995ZM14 7H10V6H14V7ZM11 9.0028H14V8.0048H11V9.0028ZM14 11H10V10H14V11ZM14 13.0028H11V12.0048H14V13.0028ZM6 12.999H9V12.001H6V12.999ZM9 10.999H6V10.001H9V10.999ZM6 8.999H9V8.001H6V8.999ZM9 6.999H6V6.001H9V6.999ZM2 12.999H5V12.001H2V12.999ZM5 11.0028H2V10.0048H5V11.0028ZM2 9.0028H5V8.0048H2V9.0028ZM5 6.999H2V6.001H5V6.999ZM14.993 0H0.995C0.446 0 0 0.446 0 0.995V14.993C0 15.542 0.446 15.988 0.995 15.988H14.993C15.542 15.988 15.988 15.542 15.988 14.993V0.995C15.988 0.446 15.542 0 14.993 0Z"/></g></svg>`;
47
- var treeData = {"name":"ListReport","description":"SAP Fiori elements v2<br>Specification Version: 1.90.13","type":"schema","children":[{"name":"fitContent","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.f.DynamicPage","description":"Set fitContent to true to optimize the dynamic page responsiveness on small screens and behavior when the DynamicPageHeader is expanded or collapsed."},{"name":"table","children":[{"name":"multiSelect","children":[],"type":"boolean","artifact":"Manifest","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"type","children":[],"type":"string","artifact":"Manifest","description":"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."},{"name":"includeItemInSelection","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.m.Table","description":"Set includeItemInSelection to true if you want items to be selectable when they are clicked rather than after the selection control has been set."},{"name":"popinLayout","children":[],"type":"string","description":"popinLayout defines the layout in which the table pop-in rows are rendered."},{"name":"createWithFilters","children":[{"name":"strategy","children":[],"type":"string","artifact":"Manifest","description":"For the new create action to use the filter settings as input, set strategy to \"extension\" and implement the extension function as mentioned in help.sap.com for SAP S/4 HANA, section “Prefilling Fields When Creating a New Entity Using an Extension Point“."}],"type":"object","artifact":"Manifest","description":"createWithFilters adds a new create action that uses the filter settings as input."},{"name":"showDraftToggle","children":[],"type":"boolean","artifact":"Manifest","description":"In the list report and on the object page, you can enable buttons to display and hide draft values. By default, these buttons are hidden. To enable them, set the showDraftToggle flag to true."},{"name":"growingThreshold","children":[],"type":"number","artifact":"FlexChange","control":"sap.m.Table","description":"growingThreshold defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true."},{"name":"createWithParameterDialog","children":[{"name":"fields","children":[{"name":"path","children":[],"type":"string","artifact":"Manifest"}]}],"type":"object","artifact":"Manifest","description":"You can enable the creation of objects that have a maximum of 8 data fields through a dialog in the list report page."},{"name":"selectAll","children":[],"type":"boolean","artifact":"Manifest","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","artifact":"Manifest","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"showTablePersonalisation","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"The showTablePersonalisation attribute can be set to false to hide the table personalization button."},{"name":"useExportToExcel","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel."},{"name":"fitContainer","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"Set to false if the table does not occupy the entire space available in the container."},{"name":"quickVariantSelection","children":[{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."}],"type":"object","artifact":"Manifest","description":"With quickVariantSelection you can switch on the multiple view feature. It links to variants you must have added to your annotations beforehand."},{"name":"quickVariantSelectionX","children":[{"name":"enableAutoBinding","children":[],"type":"boolean","artifact":"Manifest","description":"When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"entitySet","children":[],"type":"string","description":"Represents the entity set that will be displayed in this variant"},{"name":"multiSelect","children":[],"type":"boolean","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"selectAll","children":[],"type":"boolean","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"type","children":[],"type":"string","description":"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."},{"name":"showItemNavigationOnChart","children":[],"type":"boolean","description":"To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest."},{"name":"inlineDelete","children":[],"type":"boolean","description":"Used to enable inline deletion in a responsive table of list report and object page"},{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."},{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."}],"type":"object","artifact":"Manifest","description":"Switch on the multiple view feature (Multiple table mode with charts) and link to the variants you have added to your annotations."},{"name":"condensedTableLayout","children":[],"type":"boolean","artifact":"Manifest","description":"For analytical tables, grid tables and tree tables you can define a condensed table layout by setting condensedTableLayout to true."},{"name":"enableTableFilterInPageVariant","children":[],"type":"boolean","artifact":"Manifest","description":"If you have enabled harmonized variant management, by default, you cannot set a filter in the table personalization settings.\nTo enable filtering, set the enableTableFilterInPageVariant property to true."},{"name":"dataLoadSettings","children":[{"name":"loadDataOnAppLaunch","children":[],"type":"always|ifAnyFilterExist|never","artifact":"Manifest","description":"Change the default behavior for autoloading of data.\nFor multi-view scenarios, you can also change the setting enableAutobinding to False under quickVariantSelectionX instead of using the loadDataOnAppLaunch setting."}],"type":"object","artifact":"Manifest","description":"Change the default behavior for autoloading of data."},{"name":"toolBar","children":[{"name":"actions","children":[{"name":"tooltip","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Text for tooltip of button"},{"name":"icon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","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."},{"name":"activeIcon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI."},{"name":"type","children":[],"type":"Accept|Attention|Back|Critical|Default|Emphasized|Ghost|Negative|Neutral|Reject|Success|Transparent|Unstyled|Up","artifact":"FlexChange","control":"sap.m.Button","description":"Defines the Button type."},{"name":"visible","children":[],"type":"string","description":"Whether the button should be visible on the screen."}]}],"type":"object","description":"Tool Bar"},{"name":"columns","children":[{"name":"columnId","children":[{"name":"width","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Column","description":"The width property defines the width of the column."},{"name":"hAlign","children":[],"type":"string","description":"The hAlign property defines the horizontal alignment of the column content."}],"type":"object","description":"Columns"}]},{"name":"inlineDelete","children":[],"type":"boolean","artifact":"Manifest","description":"Used to enable inline deletion in a responsive table of list report and object page"},{"name":"qualifier","children":[],"type":"string","artifact":"Manifest","description":"Represents the SelectionPresentationVariant qualifier. ALP looks for SelectionPresentationVariant with this qualifier and if not found, it looks for PresentationVariant with this qualifier."},{"name":"defaultContentView","children":[],"type":"chart|charttable|table","artifact":"Manifest","description":"Determines the visualization of content area"},{"name":"defaultFilterMode","children":[],"type":"compact|visual","artifact":"Manifest","description":"Determines the filter mode that is used"},{"name":"contentTitle","children":[],"type":"string","artifact":"Manifest","description":"Lets you define title for the content area"},{"name":"filterDefaultsFromSelectionVariant","children":[],"type":"boolean","artifact":"Manifest","description":"Lets you to add default values for FilterBar using SelectionVariant annotation"},{"name":"allFiltersAsInParameters","children":[],"type":"boolean","artifact":"Manifest","description":"All filter fields will be set as in parameter"}]},{"name":"filterBar","children":[{"name":"smartVariantManagement","children":[],"type":"boolean","artifact":"Manifest","description":"Controls whether smart variant management is active. Default is true."},{"name":"liveMode","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"If liveMode is set, the search will be automatically triggered when a filter value is set."},{"name":"variantManagementHidden","children":[],"type":"boolean","artifact":"Manifest","description":"If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf you set the flag to false or if the flag is not at all contained in the manifest of the app, the standard variant management is available and can be enabled or disabled."},{"name":"subTitleIfVariantMgmtHidden","children":[],"type":"string","artifact":"Manifest","description":"You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property."},{"name":"dateSettings","children":[{"name":"useDateRange","children":[],"type":"boolean","artifact":"Manifest","description":"If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters."},{"name":"selectedValues","children":[],"type":"array","artifact":"Manifest","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","artifact":"Manifest","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"fields","children":[{"name":"selectedValues","children":[],"type":"array","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"customDateRangeImplementation","children":[],"type":"string","description":"This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types."},{"name":"filter","children":[],"type":"array","description":"You can use the filter settings to include and exclude specific date range values."}],"type":"object","artifact":"Manifest","description":"For a fields' list you can define the set of standard date range values separately."}],"type":"object","artifact":"Manifest","description":"Use to set date settings for fields in smart filter bar"},{"name":"showClearOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Clear button on the FilterBar."},{"name":"showFilterConfiguration","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Filter button on the FilterBar."},{"name":"showRestoreOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Restore button on the FilterBar."}]}]};
47
+ var treeData = {"name":"ListReport","description":"SAP Fiori elements v2<br>Specification Version: 1.96.0","type":"schema","children":[{"name":"fitContent","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.f.DynamicPage","description":"Set fitContent to true to optimize the dynamic page responsiveness on small screens and behavior when the DynamicPageHeader is expanded or collapsed."},{"name":"table","children":[{"name":"multiSelect","children":[],"type":"boolean","artifact":"Manifest","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"type","children":[],"type":"string","artifact":"Manifest","description":"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."},{"name":"includeItemInSelection","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.m.Table","description":"Set includeItemInSelection to true if you want items to be selectable when they are clicked rather than after the selection control has been set."},{"name":"popinLayout","children":[],"type":"string","description":"popinLayout defines the layout in which the table pop-in rows are rendered."},{"name":"createWithFilters","children":[{"name":"strategy","children":[],"type":"string","artifact":"Manifest","description":"For the new create action to use the filter settings as input, set strategy to \"extension\" and implement the extension function as mentioned in help.sap.com for SAP S/4 HANA, section “Prefilling Fields When Creating a New Entity Using an Extension Point“."}],"type":"object","artifact":"Manifest","description":"createWithFilters adds a new create action that uses the filter settings as input."},{"name":"showDraftToggle","children":[],"type":"boolean","artifact":"Manifest","description":"In the list report and on the object page, you can enable buttons to display and hide draft values. By default, these buttons are hidden. To enable them, set the showDraftToggle flag to true."},{"name":"growingThreshold","children":[],"type":"number","artifact":"FlexChange","control":"sap.m.Table","description":"growingThreshold defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true."},{"name":"createWithParameterDialog","children":[{"name":"fields","children":[{"name":"path","children":[],"type":"string","artifact":"Manifest"}]}],"type":"object","artifact":"Manifest","description":"You can enable the creation of objects that have a maximum of 8 data fields through a dialog in the list report page."},{"name":"selectAll","children":[],"type":"boolean","artifact":"Manifest","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","artifact":"Manifest","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"showTablePersonalisation","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"The showTablePersonalisation attribute can be set to false to hide the table personalization button."},{"name":"useExportToExcel","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel."},{"name":"fitContainer","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smarttable.SmartTable","description":"Set to false if the table does not occupy the entire space available in the container."},{"name":"quickVariantSelection","children":[{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."}],"type":"object","artifact":"Manifest","description":"With quickVariantSelection you can switch on the multiple view feature. It links to variants you must have added to your annotations beforehand."},{"name":"quickVariantSelectionX","children":[{"name":"enableAutoBinding","children":[],"type":"boolean","artifact":"Manifest","description":"When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property."},{"name":"variants","children":[{"name":"Instance (key = number)","children":[{"name":"entitySet","children":[],"type":"string","description":"Represents the entity set that will be displayed in this variant"},{"name":"multiSelect","children":[],"type":"boolean","description":"Single selection in tables is enabled by default. If you want, you can enable multi-select."},{"name":"selectAll","children":[],"type":"boolean","description":"The 'Select All' button is disabled by default. To enable it, set selectAll to true."},{"name":"selectionLimit","children":[],"type":"number","description":"If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated."},{"name":"type","children":[],"type":"string","description":"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."},{"name":"showItemNavigationOnChart","children":[],"type":"boolean","description":"To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest."},{"name":"inlineDelete","children":[],"type":"boolean","description":"Used to enable inline deletion in a responsive table of list report and object page"},{"name":"key","children":[],"type":"string","description":"A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory."},{"name":"annotationPath","children":[],"type":"string","description":"Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation."}]}],"type":"object","artifact":"Manifest","description":"The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations."},{"name":"showCounts","children":[],"type":"boolean","artifact":"Manifest","description":"To show the number of records available, set showCounts to true."}],"type":"object","artifact":"Manifest","description":"Switch on the multiple view feature (Multiple table mode with charts) and link to the variants you have added to your annotations."},{"name":"condensedTableLayout","children":[],"type":"boolean","artifact":"Manifest","description":"For analytical tables, grid tables and tree tables you can define a condensed table layout by setting condensedTableLayout to true."},{"name":"enableTableFilterInPageVariant","children":[],"type":"boolean","artifact":"Manifest","description":"If you have enabled harmonized variant management, by default, you cannot set a filter in the table personalization settings.\nTo enable filtering, set the enableTableFilterInPageVariant property to true."},{"name":"dataLoadSettings","children":[{"name":"loadDataOnAppLaunch","children":[],"type":"always|ifAnyFilterExist|never","artifact":"Manifest","description":"Change the default behavior for autoloading of data.\nFor multi-view scenarios, you can also change the setting enableAutobinding to False under quickVariantSelectionX instead of using the loadDataOnAppLaunch setting."}],"type":"object","artifact":"Manifest","description":"Change the default behavior for autoloading of data."},{"name":"toolBar","children":[{"name":"actions","children":[{"name":"tooltip","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Text for tooltip of button"},{"name":"icon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","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."},{"name":"activeIcon","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Button","description":"Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI."},{"name":"type","children":[],"type":"Accept|Attention|Back|Critical|Default|Emphasized|Ghost|Negative|Neutral|Reject|Success|Transparent|Unstyled|Up","artifact":"FlexChange","control":"sap.m.Button","description":"Defines the Button type."},{"name":"visible","children":[],"type":"string","description":"Whether the button should be visible on the screen."}]}],"type":"object","description":"Tool Bar"},{"name":"columns","children":[{"name":"columnId","children":[{"name":"width","children":[],"type":"string","artifact":"FlexChange","control":"sap.m.Column","description":"The width property defines the width of the column."},{"name":"hAlign","children":[],"type":"string","description":"The hAlign property defines the horizontal alignment of the column content."}],"type":"object","description":"Columns"}]},{"name":"inlineDelete","children":[],"type":"boolean","artifact":"Manifest","description":"Used to enable inline deletion in a responsive table of list report and object page"},{"name":"qualifier","children":[],"type":"string","artifact":"Manifest","description":"Represents the SelectionPresentationVariant qualifier. ALP looks for SelectionPresentationVariant with this qualifier and if not found, it looks for PresentationVariant with this qualifier."},{"name":"defaultContentView","children":[],"type":"chart|charttable|table","artifact":"Manifest","description":"Determines the visualization of content area"},{"name":"defaultFilterMode","children":[],"type":"compact|visual","artifact":"Manifest","description":"Determines the filter mode that is used"},{"name":"contentTitle","children":[],"type":"string","artifact":"Manifest","description":"Lets you define title for the content area"},{"name":"filterDefaultsFromSelectionVariant","children":[],"type":"boolean","artifact":"Manifest","description":"Lets you to add default values for FilterBar using SelectionVariant annotation"},{"name":"allFiltersAsInParameters","children":[],"type":"boolean","artifact":"Manifest","description":"All filter fields will be set as in parameter"}]},{"name":"filterBar","children":[{"name":"annotationPath","children":[],"type":"string","artifact":"Manifest","description":"Lets you to add default values for FilterBar using SelectionVariant annotation"},{"name":"smartVariantManagement","children":[],"type":"boolean","artifact":"Manifest","description":"Controls whether smart variant management is active. Default is true."},{"name":"liveMode","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"If liveMode is set, the search will be automatically triggered when a filter value is set."},{"name":"variantManagementHidden","children":[],"type":"boolean","artifact":"Manifest","description":"If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf you set the flag to false or if the flag is not at all contained in the manifest of the app, the standard variant management is available and can be enabled or disabled."},{"name":"subTitleIfVariantMgmtHidden","children":[],"type":"string","artifact":"Manifest","description":"You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property."},{"name":"dateSettings","children":[{"name":"useDateRange","children":[],"type":"boolean","artifact":"Manifest","description":"If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters."},{"name":"selectedValues","children":[],"type":"array","artifact":"Manifest","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","artifact":"Manifest","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"fields","children":[{"name":"selectedValues","children":[],"type":"array","description":"The selectedValues property is a set of standard date range values that you want to include or exclude."},{"name":"exclude","children":[],"type":"boolean","description":"The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters."},{"name":"customDateRangeImplementation","children":[],"type":"string","description":"This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types."},{"name":"filter","children":[],"type":"array","description":"You can use the filter settings to include and exclude specific date range values."}],"type":"object","artifact":"Manifest","description":"For a fields' list you can define the set of standard date range values separately."}],"type":"object","artifact":"Manifest","description":"Use to set date settings for fields in smart filter bar"},{"name":"showClearOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Clear button on the FilterBar."},{"name":"showFilterConfiguration","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Filter button on the FilterBar."},{"name":"showRestoreOnFB","children":[],"type":"boolean","artifact":"FlexChange","control":"sap.ui.comp.smartfilterbar.SmartFilterBar","description":"Handles visibility of the Restore button on the FilterBar."}]}]};
48
48
  </script>
49
49
  <script type="module" src="./../runDocu-min.js"></script>