@sap/ux-specification 1.71.147 → 1.71.149

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 (144) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ListReportNew.html +2 -2
  6. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  7. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  8. package/dist/index-min.js +196 -196
  9. package/dist/index-min.js.map +4 -4
  10. package/dist/schemas/v2/ApplicationV2.json +34 -8
  11. package/dist/schemas/v2/ListReportNewConfig.json +134 -0
  12. package/dist/schemas/v2/ObjectPageConfig.json +11 -4
  13. package/dist/specification/package.json +17 -15
  14. package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
  15. package/dist/specification/scripts/schema/to-json-schema.js +58 -5
  16. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  17. package/dist/specification/src/sync/common/dist_tag.json +17 -18
  18. package/dist/specification/src/sync/common/generate/utils.d.ts +12 -3
  19. package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
  20. package/dist/specification/src/sync/common/generate/utils.js +32 -18
  21. package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
  22. package/dist/specification/src/sync/common/i18n.json +14 -2
  23. package/dist/specification/src/sync/common/utils.d.ts +64 -0
  24. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  25. package/dist/specification/src/sync/common/utils.js +147 -1
  26. package/dist/specification/src/sync/common/utils.js.map +1 -1
  27. package/dist/specification/src/sync/v2/application.d.ts +1 -0
  28. package/dist/specification/src/sync/v2/application.d.ts.map +1 -1
  29. package/dist/specification/src/sync/v2/application.js +18 -0
  30. package/dist/specification/src/sync/v2/application.js.map +1 -1
  31. package/dist/specification/src/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -1
  32. package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
  33. package/dist/specification/src/sync/v2/export/exportPage.js +15 -4
  34. package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
  35. package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
  36. package/dist/specification/src/sync/v2/export/exportPageGeneric.js +6 -12
  37. package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
  38. package/dist/specification/src/sync/v2/export/factory.d.ts +23 -0
  39. package/dist/specification/src/sync/v2/export/factory.d.ts.map +1 -1
  40. package/dist/specification/src/sync/v2/export/factory.js +3 -3
  41. package/dist/specification/src/sync/v2/export/factory.js.map +1 -1
  42. package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts +1 -0
  43. package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts.map +1 -1
  44. package/dist/specification/src/sync/v2/export/pages/ObjectPage.js +11 -0
  45. package/dist/specification/src/sync/v2/export/pages/ObjectPage.js.map +1 -1
  46. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  47. package/dist/specification/src/sync/v2/generate/listReport.js +44 -0
  48. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  49. package/dist/specification/src/sync/v2/generate/manifestPropertyUtils.d.ts +1 -2
  50. package/dist/specification/src/sync/v2/generate/manifestPropertyUtils.d.ts.map +1 -1
  51. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  52. package/dist/specification/src/sync/v2/generate/objectPage.js +86 -31
  53. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  54. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts +1 -1
  55. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
  56. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +4 -1
  57. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
  58. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +8 -0
  59. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -1
  60. package/dist/specification/src/sync/v2/generate/stableIdUtils.js +1 -0
  61. package/dist/specification/src/sync/v2/generate/stableIdUtils.js.map +1 -1
  62. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +3 -2
  63. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js.map +1 -1
  64. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts +78 -0
  65. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts.map +1 -0
  66. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +454 -0
  67. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -0
  68. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts +22 -0
  69. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts.map +1 -0
  70. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js +124 -0
  71. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js.map +1 -0
  72. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +54 -0
  73. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -0
  74. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +153 -0
  75. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -0
  76. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +3 -0
  77. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
  78. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +3 -0
  79. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
  80. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +4 -2
  81. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
  82. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +61 -23
  83. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
  84. package/dist/specification/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
  85. package/dist/specification/src/sync/v2/import/pages/overviewPage.js +40 -20
  86. package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
  87. package/dist/specification/src/sync/v2/utils.d.ts +23 -0
  88. package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
  89. package/dist/specification/src/sync/v2/utils.js +67 -0
  90. package/dist/specification/src/sync/v2/utils.js.map +1 -1
  91. package/dist/types/src/common/Application.d.ts +3 -0
  92. package/dist/types/src/common/Application.d.ts.map +1 -1
  93. package/dist/types/src/common/Application.js +4 -0
  94. package/dist/types/src/common/Application.js.map +1 -1
  95. package/dist/types/src/common/types.d.ts +1 -0
  96. package/dist/types/src/common/types.d.ts.map +1 -1
  97. package/dist/types/src/v2/application.d.ts +18 -0
  98. package/dist/types/src/v2/application.d.ts.map +1 -1
  99. package/dist/types/src/v2/controls/Action.d.ts +12 -0
  100. package/dist/types/src/v2/controls/Action.d.ts.map +1 -1
  101. package/dist/types/src/v2/controls/AnalyticalListPageChart.d.ts +1 -0
  102. package/dist/types/src/v2/controls/AnalyticalListPageChart.d.ts.map +1 -1
  103. package/dist/types/src/v2/controls/AnalyticalListPageKPI.d.ts +1 -0
  104. package/dist/types/src/v2/controls/AnalyticalListPageKPI.d.ts.map +1 -1
  105. package/dist/types/src/v2/controls/Card.d.ts +12 -0
  106. package/dist/types/src/v2/controls/Card.d.ts.map +1 -1
  107. package/dist/types/src/v2/controls/Card.js.map +1 -1
  108. package/dist/types/src/v2/controls/Field.d.ts +1 -0
  109. package/dist/types/src/v2/controls/Field.d.ts.map +1 -1
  110. package/dist/types/src/v2/controls/FilterBar.d.ts +5 -0
  111. package/dist/types/src/v2/controls/FilterBar.d.ts.map +1 -1
  112. package/dist/types/src/v2/controls/Header.d.ts +1 -0
  113. package/dist/types/src/v2/controls/Header.d.ts.map +1 -1
  114. package/dist/types/src/v2/controls/ObjectPageChart.d.ts +1 -0
  115. package/dist/types/src/v2/controls/ObjectPageChart.d.ts.map +1 -1
  116. package/dist/types/src/v2/controls/ObjectPageFooter.d.ts +2 -0
  117. package/dist/types/src/v2/controls/ObjectPageFooter.d.ts.map +1 -1
  118. package/dist/types/src/v2/controls/ObjectPageForm.d.ts +1 -0
  119. package/dist/types/src/v2/controls/ObjectPageForm.d.ts.map +1 -1
  120. package/dist/types/src/v2/controls/ObjectPageHeader.d.ts +1 -0
  121. package/dist/types/src/v2/controls/ObjectPageHeader.d.ts.map +1 -1
  122. package/dist/types/src/v2/controls/ObjectPageHeaderSection.d.ts +3 -0
  123. package/dist/types/src/v2/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  124. package/dist/types/src/v2/controls/ObjectPageLayout.d.ts +1 -0
  125. package/dist/types/src/v2/controls/ObjectPageLayout.d.ts.map +1 -1
  126. package/dist/types/src/v2/controls/ObjectPageSection.d.ts +13 -0
  127. package/dist/types/src/v2/controls/ObjectPageSection.d.ts.map +1 -1
  128. package/dist/types/src/v2/controls/ObjectPageSection.js.map +1 -1
  129. package/dist/types/src/v2/controls/ObjectPageTable.d.ts +7 -4
  130. package/dist/types/src/v2/controls/ObjectPageTable.d.ts.map +1 -1
  131. package/dist/types/src/v2/controls/ObjectPageToolBar.d.ts +2 -0
  132. package/dist/types/src/v2/controls/ObjectPageToolBar.d.ts.map +1 -1
  133. package/dist/types/src/v2/controls/Table.d.ts +25 -0
  134. package/dist/types/src/v2/controls/Table.d.ts.map +1 -1
  135. package/dist/types/src/v2/controls/Table.js.map +1 -1
  136. package/dist/types/src/v2/controls/ToolBar.d.ts +1 -0
  137. package/dist/types/src/v2/controls/ToolBar.d.ts.map +1 -1
  138. package/dist/types/src/v2/pages/AnalyticalListPageConfigV2.d.ts +1 -0
  139. package/dist/types/src/v2/pages/AnalyticalListPageConfigV2.d.ts.map +1 -1
  140. package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts +10 -1
  141. package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts.map +1 -1
  142. package/dist/types/src/v2/pages/OverviewPageConfigV2.d.ts +4 -0
  143. package/dist/types/src/v2/pages/OverviewPageConfigV2.d.ts.map +1 -1
  144. package/package.json +17 -15
@@ -5,7 +5,7 @@
5
5
  <link href="../styleDocu.css" rel="stylesheet" />
6
6
  </head>
7
7
  <body>
8
- <div id="version-container">SAP Fiori elements for OData V2<br />@sap/ux-specification 1.71.147</div>
8
+ <div id="version-container">SAP Fiori elements for OData V2<br />@sap/ux-specification 1.71.149</div>
9
9
  <div id="button-container">
10
10
  <input type="button" id="resetTree" value="Reset" /><input type="button" value="Expand" id="expandTree" />
11
11
  </div>
@@ -56,7 +56,7 @@
56
56
  <script src="./../runDocu-min.js"></script>
57
57
  <script>
58
58
  var floorPlanIcon = `<path fill-rule="evenodd" clip-rule="evenodd" fill="var(--vscode-icon-foreground)"d="M14.988 15.488V14.988H14.989L14.988 15.488ZM14.988 14.988H1V1H14.988V14.988ZM14.988 0H1C0.448 0 0 0.448 0 1V14.988C0 15.54 0.448 15.988 1 15.988H14.988C15.54 15.988 15.988 15.54 15.988 14.988V1C15.988 0.448 15.54 0 14.988 0ZM2.9917 7.037H7.0147V3.014H2.9917V7.037ZM7.5147 2.013H2.4907C2.2147 2.013 1.9907 2.237 1.9907 2.513V7.537C1.9907 7.813 2.2147 8.037 2.4907 8.037H7.5147C7.7907 8.037 8.0147 7.813 8.0147 7.537V2.513C8.0147 2.237 7.7907 2.013 7.5147 2.013ZM7.0147 13.014H2.9917V10.034H7.0147V13.014ZM2.4907 9.034H7.5147C7.7907 9.034 8.0147 9.258 8.0147 9.534V13.514C8.0147 13.791 7.7907 14.014 7.5147 14.014H2.4907C2.2147 14.014 1.9907 13.791 1.9907 13.514V9.534C1.9907 9.258 2.2147 9.034 2.4907 9.034ZM9.9847 9.034H13.0217V3.013H9.9847V9.034ZM13.5217 2.013H9.4847C9.2087 2.013 8.9847 2.237 8.9847 2.513V9.534C8.9847 9.81 9.2087 10.034 9.4847 10.034H13.5217C13.7987 10.034 14.0217 9.81 14.0217 9.534V2.513C14.0217 2.237 13.7987 2.013 13.5217 2.013ZM13.0217 13.006H9.9847V12.021H13.0217V13.006ZM9.4847 11.02H13.5217C13.7987 11.02 14.0217 11.244 14.0217 11.52V13.506C14.0217 13.782 13.7987 14.006 13.5217 14.006H9.4847C9.2087 14.006 8.9847 13.782 8.9847 13.506V11.52C8.9847 11.244 9.2087 11.02 9.4847 11.02Z"/>`;
59
- var treeData = {"name":"OverviewPage","description":"SAP Fiori elements for OData V2<br>@sap/ux-specification version 1.71.147","type":"schema","children":[{"name":"globalFilterModel","children":[],"type":"string","artifact":"Manifest","description":"Represents the name of the global OData filter model."},{"name":"globalFilterEntityType","children":[],"type":"string","artifact":"Manifest","description":"Represents the entity type to use as global filter in the smart filter bar control."},{"name":"globalFilterEntitySet","children":[],"type":"string","artifact":"Manifest","description":"Represents the entity set to use as global filter in the smart filter bar control."},{"name":"showBasicSearch","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to include basic search in the global filters. The default value is false."},{"name":"disableErrorPage","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to disable the error page shown on load of overview page when no data is retrieved from the backend. The default value is false."},{"name":"smartVariantRequired","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to activate smart variant management in the global filters. The default value is true."},{"name":"bHeaderExpanded","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to show smart filter bar in expanded or collapsed mode. The default value is false."},{"name":"containerLayout","children":[],"type":"fixed|resizable","artifact":"Manifest","description":"Represents the layout of the card container. The default value is fixed."},{"name":"showDateInRelativeFormat","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to enable or disable relative or normal date formating. The default value is true."},{"name":"disableTableCardFlexibility","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to enable or disable the flexibility of table cards. The default value is false."},{"name":"enableLiveFilter","children":[],"type":"boolean","artifact":"Manifest","description":"Represents the switch to activate live update in the global filters, else manual update will be required. The default value is true."},{"name":"enableLazyRendering","children":[],"type":"boolean","artifact":"Manifest","description":"Enable loading of cards when they enter viewport. The default value is false."},{"name":"refreshStrategyOnAppRestore","children":[{"name":"entitySets","children":[],"type":"object","description":"Represents the map of entity sets configured for refresh strategies"}],"type":"object","artifact":"Manifest","description":"Represents the refresh strategies configured for OVP while coming back to the source app."},{"name":"considerAnalyticalParameters","children":[],"type":"boolean","artifact":"Manifest","description":"Flag to enable or disable analytical parameter support for the smart filter bar. The default value is false."},{"name":"refreshIntervalInMinutes","children":[],"type":"number","artifact":"Manifest","description":"Time interval in minutes to auto refresh the card models. The default value is 1."},{"name":"useDateRangeType","children":[],"type":"boolean","artifact":"Manifest","description":"Flag to enable or disable semantic date range control for the smart filter bar. The default value is false."},{"name":"chartSettings","children":[{"name":"showDataLabel","children":[],"type":"boolean","artifact":"Manifest","description":"Flag to enable data labels on analytical charts. The default value is false."}],"type":"object","description":"Represents the object to store analytical chart settings."},{"name":"dataLoadSettings","children":[{"name":"loadDataOnAppLaunch","children":[],"type":"always|ifAnyFilterExist|never","description":"Data load behaviour options on application launch. The default value is 'always'."}],"type":"object","artifact":"Manifest","description":"Represents the object to define data loading behaviour for an overview page application."},{"name":"resizableLayout","children":[{"name":"col","children":[],"type":"number","description":"Represents the grid column"},{"name":"row","children":[],"type":"number","description":"Represents the grid row"},{"name":"colSpan","children":[],"type":"number","description":"Represents the column span"},{"name":"rowSpan","children":[],"type":"number","description":"Represents the row span"},{"name":"visible","children":[],"type":"boolean","description":"Represents the visibility of the card"}],"type":"object","artifact":"Manifest","description":"Represents the resizable layout."},{"name":"cards","children":[{"name":"cardKey","children":[{"name":"model","children":[],"type":"string","artifact":"Manifest","description":"Represents the model for the Analytical Card"},{"name":"template","children":[],"type":"string","artifact":"Manifest","description":"Represents the component path to use for this card."},{"name":"settings","children":[{"name":"entitySet","children":[],"type":"string","artifact":"Manifest","description":"Represents the dominant entity set that will be displayed in the given card."},{"name":"title","children":[],"type":"string","artifact":"Manifest","description":"The language-dependent title of the card, used in the card header."},{"name":"subTitle","children":[],"type":"string","artifact":"Manifest","description":"The language-dependent subtitle of the card, used in the card header."},{"name":"annotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the annotation path."},{"name":"identificationAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the identification annotation path."},{"name":"dataPointAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the data point annotation path."},{"name":"selectionAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the selection annotation path."},{"name":"presentationAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the presentation annotation path."},{"name":"selectionPresentationAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the selection presentation annotation path."},{"name":"kpiAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the KPI annotation path."},{"name":"category","children":[],"type":"string","artifact":"Manifest","description":"The category of the card, as used in the card header."},{"name":"defaultSpan","children":[{"name":"cols","children":[],"type":"number","artifact":"Manifest","description":"Represents the number of grid columns."},{"name":"rows","children":[],"type":"number","artifact":"Manifest","description":"Represents the number of grid rows."},{"name":"showOnlyHeader","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if only the header part of a card is shown in the resizable layout."},{"name":"minimumTitleRow","children":[],"type":"number","artifact":"Manifest","description":"Sets the number of lines for the title row. The maximum is 3."},{"name":"minimumSubTitleRow","children":[],"type":"number","artifact":"Manifest","description":"Sets the number of lines for the subtitle row. The maximum is 2."}],"type":"string","description":"To load cards with specific requirements, define a default size as part of the card definition in the descriptor file."},{"name":"requireAppAuthorization","children":[],"type":"string","artifact":"Manifest","description":"Define an authorization check at card level."},{"name":"tabs","children":[{"name":"annotationPath","children":[],"type":"string","description":"Represents the annotation path"},{"name":"selectionAnnotationPath","children":[],"type":"string","description":"Represents the selection annotation path"},{"name":"chartAnnotationPath","children":[],"type":"string","description":"Represents the chart annotation path"},{"name":"presentationAnnotationPath","children":[],"type":"string","description":"Represents the presentation annotation path"},{"name":"dataPointAnnotationPath","children":[],"type":"string","description":"Represents the data point annotation path"},{"name":"identificationAnnotationPath","children":[],"type":"string","description":"Represents the identification annotation path"},{"name":"dynamicSubtitleAnnotationPath","children":[],"type":"string","description":"Represents the dynamic subtitle annotation path"},{"name":"value","children":[],"type":"string","description":"Represents the drop down value to be shown"},{"name":"chartProperties","children":[{"name":"plotArea","children":[{"name":"isSmoothed","children":[],"type":"boolean","description":"Represents whether smoother curves are required or not"},{"name":"markerSize","children":[],"type":"number","description":"Represents the size of the markers in scatter plots"},{"name":"dataLabel","children":[{"name":"type","children":[],"type":"string","description":"Defines whether to display percentage values or actual counts in the donut chart"}],"type":"object","description":"dataLabel is a parent property that defines other properties for type"}]},{"name":"timeAxis","children":[{"name":"levels","children":[],"type":"array","description":"Plot area is a parent property which defines multiple other properties for smoothness and marker size"}]}],"type":"object","description":"This property is responsible for setting specific chart settings"},{"name":"colorPalette","children":[],"type":"object","description":"Represents the configuration to customize the column stacked chart"}],"type":"object","artifact":"Manifest","description":"Represents the card with view switch control."},{"name":"addODataSelect","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if the $Select parameter shall be added to data fetch requests."},{"name":"sortBy","children":[],"type":"string","artifact":"Manifest","description":"Defines the property by which the list is sorted."},{"name":"sortOrder","children":[],"type":"string","artifact":"Manifest","description":"Sort order (ascending or descending)."},{"name":"dynamicSubtitleAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the dynamic subtitle annotation path."},{"name":"enableLocaleCurrencyFormatting","children":[],"type":"boolean","artifact":"Manifest","description":"Represents the flag to indicate the use of object number/smart field."},{"name":"showFilterInHeader","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if filters are shown in card headers."},{"name":"showSortingInHeader","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if sorting is shown in card headers."},{"name":"customParams","children":[],"type":"string","artifact":"Manifest","description":"Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file."},{"name":"listFlavor","children":[],"type":"carousel|standard","artifact":"Manifest","description":"listFlavor represents the flavor of the list to use in this card."},{"name":"listType","children":[],"type":"condensed|extended","artifact":"Manifest","description":"Represents the type of list to use for this card.\nThe list can be extended to display more information or condensed to take up less space."},{"name":"showLineItemDetail","children":[],"type":"boolean","artifact":"Manifest","description":"Flag for showing line item details in list and table cards."},{"name":"imageSupported","children":[],"type":"boolean","artifact":"Manifest","description":"Flag for enabling images in a condensed list card."},{"name":"valueSelectionInfo","children":[],"type":"string","artifact":"Manifest","description":"Represents things like people, number of items."},{"name":"itemText","children":[],"type":"string","artifact":"Manifest","description":"Represents the user defined string in placeholder card."},{"name":"objectStreamCardsNavigationProperty","children":[],"type":"string","artifact":"Manifest","description":"The navigation property used to display information from a secondary entity set."},{"name":"objectStreamCardsSettings","children":[{"name":"showFirstActionInFooter","children":[],"type":"boolean","description":"Represents the flag to show first action in footer of the Quickview cards"},{"name":"customActions","children":[{"name":"text","children":[],"type":"string","description":"Text displayed for extended actions in Quick View"},{"name":"press","children":[],"type":"string","description":"Name of the press handler for extended actions in Quick View"},{"name":"position","children":[],"type":"number","description":"Position of extended actions in Quick View"}],"type":"object","description":"Represents the custom actions in the Quick View Cards"}],"type":"object","artifact":"Manifest","description":"Configures additional settings for the cards displayed in the object stream."},{"name":"headerAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"headerAnnotationPath represents the path to a HeaderInfo annotation."},{"name":"staticContent","children":[{"name":"title","children":[],"type":"string","description":"The language-dependent title of the static content."},{"name":"subTitle","children":[],"type":"string","description":"The language-dependent subtitle of the static content."},{"name":"imageUri","children":[],"type":"string","description":"The URI for the image of the static content."},{"name":"targetUri","children":[],"type":"string","description":"The URI for the target of the static content."},{"name":"imageAltText","children":[],"type":"string","description":"The alternative text for the image of the static content."},{"name":"semanticObject","children":[],"type":"string","description":"Used to provide intent-based navigation."},{"name":"action","children":[],"type":"string","description":"Used to provide intent based navigation."},{"name":"openInNewWindow","children":[],"type":"boolean","description":"Open static content in a new window."}],"type":"object","artifact":"Manifest","description":"staticContent represents the content of a static link list card."},{"name":"chartAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the chart annotation path."},{"name":"ignoreSapText","children":[],"type":"boolean","artifact":"Manifest","description":"Represents the flag to indicate priority of number formatting over sap text."},{"name":"navigation","children":[],"type":"chartNav|dataPointNav|headerNav|noHeaderNav","artifact":"Manifest","description":"Represents the configuration to alter the navigation mode."},{"name":"chartProperties","children":[],"type":"object","artifact":"Manifest","description":"This property is responsible for setting specific chart settings."},{"name":"colorPalette","children":[],"type":"object","description":"Color palette for semantic coloring."}],"type":"object","artifact":"Manifest","description":"Represents the properties that are passed to the analytical card."}],"type":"object","description":"Cards"}]}]};
59
+ var treeData = {"name":"OverviewPage","description":"SAP Fiori elements for OData V2<br>@sap/ux-specification version 1.71.149","type":"schema","children":[{"name":"globalFilterModel","children":[],"type":"string","artifact":"Manifest","description":"Represents the name of the global OData filter model."},{"name":"globalFilterEntityType","children":[],"type":"string","artifact":"Manifest","description":"Represents the entity type to use as global filter in the smart filter bar control."},{"name":"globalFilterEntitySet","children":[],"type":"string","artifact":"Manifest","description":"Represents the entity set to use as global filter in the smart filter bar control."},{"name":"showBasicSearch","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to include basic search in the global filters. The default value is false."},{"name":"disableErrorPage","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to disable the error page shown on load of overview page when no data is retrieved from the backend. The default value is false."},{"name":"smartVariantRequired","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to activate smart variant management in the global filters. The default value is true."},{"name":"bHeaderExpanded","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to show smart filter bar in expanded or collapsed mode. The default value is false."},{"name":"containerLayout","children":[],"type":"fixed|resizable","artifact":"Manifest","description":"Represents the layout of the card container. The default value is fixed."},{"name":"showDateInRelativeFormat","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to enable or disable relative or normal date formating. The default value is true."},{"name":"disableTableCardFlexibility","children":[],"type":"boolean","artifact":"Manifest","description":"Represents a switch to enable or disable the flexibility of table cards. The default value is false."},{"name":"enableLiveFilter","children":[],"type":"boolean","artifact":"Manifest","description":"Represents the switch to activate live update in the global filters, else manual update will be required. The default value is true."},{"name":"enableLazyRendering","children":[],"type":"boolean","artifact":"Manifest","description":"Enable loading of cards when they enter viewport. The default value is false."},{"name":"refreshStrategyOnAppRestore","children":[{"name":"entitySets","children":[],"type":"object","description":"Represents the map of entity sets configured for refresh strategies"}],"type":"object","artifact":"Manifest","description":"Represents the refresh strategies configured for OVP while coming back to the source app."},{"name":"considerAnalyticalParameters","children":[],"type":"boolean","artifact":"Manifest","description":"Flag to enable or disable analytical parameter support for the smart filter bar. The default value is false."},{"name":"refreshIntervalInMinutes","children":[],"type":"number","artifact":"Manifest","description":"Time interval in minutes to auto refresh the card models. The default value is 1."},{"name":"useDateRangeType","children":[],"type":"boolean","artifact":"Manifest","description":"Flag to enable or disable semantic date range control for the smart filter bar. The default value is false."},{"name":"chartSettings","children":[{"name":"showDataLabel","children":[],"type":"boolean","artifact":"Manifest","description":"Flag to enable data labels on analytical charts. The default value is false."}],"type":"object","description":"Represents the object to store analytical chart settings."},{"name":"dataLoadSettings","children":[{"name":"loadDataOnAppLaunch","children":[],"type":"always|ifAnyFilterExist|never","description":"Data load behaviour options on application launch. The default value is 'always'."}],"type":"object","artifact":"Manifest","description":"Represents the object to define data loading behaviour for an overview page application."},{"name":"resizableLayout","children":[{"name":"col","children":[],"type":"number","description":"Represents the grid column"},{"name":"row","children":[],"type":"number","description":"Represents the grid row"},{"name":"colSpan","children":[],"type":"number","description":"Represents the column span"},{"name":"rowSpan","children":[],"type":"number","description":"Represents the row span"},{"name":"visible","children":[],"type":"boolean","description":"Represents the visibility of the card"}],"type":"object","artifact":"Manifest","description":"Represents the resizable layout."},{"name":"cards","children":[{"name":"cardKey","children":[{"name":"model","children":[],"type":"string","artifact":"Manifest","description":"Represents the model for the Analytical Card"},{"name":"template","children":[],"type":"string","artifact":"Manifest","description":"Represents the component path to use for this card."},{"name":"settings","children":[{"name":"entitySet","children":[],"type":"string","artifact":"Manifest","description":"Represents the dominant entity set that will be displayed in the given card."},{"name":"title","children":[],"type":"string","artifact":"Manifest","description":"The language-dependent title of the card, used in the card header."},{"name":"subTitle","children":[],"type":"string","artifact":"Manifest","description":"The language-dependent subtitle of the card, used in the card header."},{"name":"annotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the annotation path."},{"name":"identificationAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the identification annotation path."},{"name":"dataPointAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the data point annotation path."},{"name":"selectionAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the selection annotation path."},{"name":"presentationAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the presentation annotation path."},{"name":"selectionPresentationAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the selection presentation annotation path."},{"name":"kpiAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the KPI annotation path."},{"name":"category","children":[],"type":"string","artifact":"Manifest","description":"The category of the card, as used in the card header."},{"name":"defaultSpan","children":[{"name":"cols","children":[],"type":"number","artifact":"Manifest","description":"Represents the number of grid columns."},{"name":"rows","children":[],"type":"number","artifact":"Manifest","description":"Represents the number of grid rows."},{"name":"showOnlyHeader","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if only the header part of a card is shown in the resizable layout."},{"name":"minimumTitleRow","children":[],"type":"number","artifact":"Manifest","description":"Sets the number of lines for the title row. The maximum is 3."},{"name":"minimumSubTitleRow","children":[],"type":"number","artifact":"Manifest","description":"Sets the number of lines for the subtitle row. The maximum is 2."}],"type":"string","description":"To load cards with specific requirements, define a default size as part of the card definition in the descriptor file."},{"name":"requireAppAuthorization","children":[],"type":"string","artifact":"Manifest","description":"Define an authorization check at card level."},{"name":"tabs","children":[{"name":"annotationPath","children":[],"type":"string","description":"Represents the annotation path"},{"name":"selectionAnnotationPath","children":[],"type":"string","description":"Represents the selection annotation path"},{"name":"chartAnnotationPath","children":[],"type":"string","description":"Represents the chart annotation path"},{"name":"presentationAnnotationPath","children":[],"type":"string","description":"Represents the presentation annotation path"},{"name":"dataPointAnnotationPath","children":[],"type":"string","description":"Represents the data point annotation path"},{"name":"identificationAnnotationPath","children":[],"type":"string","description":"Represents the identification annotation path"},{"name":"dynamicSubtitleAnnotationPath","children":[],"type":"string","description":"Represents the dynamic subtitle annotation path"},{"name":"value","children":[],"type":"string","description":"Represents the drop down value to be shown"},{"name":"chartProperties","children":[{"name":"plotArea","children":[{"name":"isSmoothed","children":[],"type":"boolean","description":"Represents whether smoother curves are required or not"},{"name":"markerSize","children":[],"type":"number","description":"Represents the size of the markers in scatter plots"},{"name":"dataLabel","children":[{"name":"type","children":[],"type":"string","description":"Defines whether to display percentage values or actual counts in the donut chart"}],"type":"object","description":"dataLabel is a parent property that defines other properties for type"}]},{"name":"timeAxis","children":[{"name":"levels","children":[],"type":"array","description":"Plot area is a parent property which defines multiple other properties for smoothness and marker size"}]}],"type":"object","description":"This property is responsible for setting specific chart settings"},{"name":"colorPalette","children":[],"type":"object","description":"Represents the configuration to customize the column stacked chart"}],"type":"object","artifact":"Manifest","description":"Represents the card with view switch control."},{"name":"addODataSelect","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if the $Select parameter shall be added to data fetch requests."},{"name":"sortBy","children":[],"type":"string","artifact":"Manifest","description":"Defines the property by which the list is sorted."},{"name":"sortOrder","children":[],"type":"string","artifact":"Manifest","description":"Sort order (ascending or descending)."},{"name":"dynamicSubtitleAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the dynamic subtitle annotation path."},{"name":"enableLocaleCurrencyFormatting","children":[],"type":"boolean","artifact":"Manifest","description":"Represents the flag to indicate the use of object number/smart field."},{"name":"showFilterInHeader","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if filters are shown in card headers."},{"name":"showSortingInHeader","children":[],"type":"boolean","artifact":"Manifest","description":"Determines if sorting is shown in card headers."},{"name":"customParams","children":[],"type":"string","artifact":"Manifest","description":"Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file."},{"name":"listFlavor","children":[],"type":"carousel|standard","artifact":"Manifest","description":"listFlavor represents the flavor of the list to use in this card."},{"name":"listType","children":[],"type":"condensed|extended","artifact":"Manifest","description":"Represents the type of list to use for this card.\nThe list can be extended to display more information or condensed to take up less space."},{"name":"showLineItemDetail","children":[],"type":"boolean","artifact":"Manifest","description":"Flag for showing line item details in list and table cards."},{"name":"imageSupported","children":[],"type":"boolean","artifact":"Manifest","description":"Flag for enabling images in a condensed list card."},{"name":"valueSelectionInfo","children":[],"type":"string","artifact":"Manifest","description":"Represents things like people, number of items."},{"name":"itemText","children":[],"type":"string","artifact":"Manifest","description":"Represents the user defined string in placeholder card."},{"name":"objectStreamCardsNavigationProperty","children":[],"type":"string","artifact":"Manifest","description":"The navigation property used to display information from a secondary entity set."},{"name":"objectStreamCardsSettings","children":[{"name":"showFirstActionInFooter","children":[],"type":"boolean","description":"Represents the flag to show first action in footer of the Quickview cards"},{"name":"customActions","children":[{"name":"text","children":[],"type":"string","description":"Text displayed for extended actions in Quick View"},{"name":"press","children":[],"type":"string","description":"Name of the press handler for extended actions in Quick View"},{"name":"position","children":[],"type":"number","description":"Position of extended actions in Quick View"}],"type":"object","description":"Represents the custom actions in the Quick View Cards"}],"type":"object","artifact":"Manifest","description":"Configures additional settings for the cards displayed in the object stream."},{"name":"headerAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"headerAnnotationPath represents the path to a HeaderInfo annotation."},{"name":"staticContent","children":[{"name":"title","children":[],"type":"string","description":"The language-dependent title of the static content."},{"name":"subTitle","children":[],"type":"string","description":"The language-dependent subtitle of the static content."},{"name":"imageUri","children":[],"type":"string","description":"The URI for the image of the static content."},{"name":"targetUri","children":[],"type":"string","description":"The URI for the target of the static content."},{"name":"imageAltText","children":[],"type":"string","description":"The alternative text for the image of the static content."},{"name":"semanticObject","children":[],"type":"string","description":"Used to provide intent-based navigation."},{"name":"action","children":[],"type":"string","description":"Used to provide intent based navigation."},{"name":"openInNewWindow","children":[],"type":"boolean","description":"Open static content in a new window."}],"type":"object","artifact":"Manifest","description":"staticContent represents the content of a static link list card."},{"name":"chartAnnotationPath","children":[],"type":"string","artifact":"Manifest","description":"Represents the chart annotation path."},{"name":"ignoreSapText","children":[],"type":"boolean","artifact":"Manifest","description":"Represents the flag to indicate priority of number formatting over sap text."},{"name":"navigation","children":[],"type":"chartNav|dataPointNav|headerNav|noHeaderNav","artifact":"Manifest","description":"Represents the configuration to alter the navigation mode."},{"name":"chartProperties","children":[],"type":"object","artifact":"Manifest","description":"This property is responsible for setting specific chart settings."},{"name":"colorPalette","children":[],"type":"object","description":"Color palette for semantic coloring."}],"type":"object","artifact":"Manifest","description":"Represents the properties that are passed to the analytical card."}],"type":"object","description":"Cards"}]}]};
60
60
 
61
61
  var initTreeDiagram = () => {
62
62
  if (!window.treeDiagram) {