@sapui5/sap.suite.ui.generic.template 1.129.1 → 1.130.2

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 (107) hide show
  1. package/package.json +4 -3
  2. package/src/sap/suite/ui/generic/template/.library +5 -1
  3. package/src/sap/suite/ui/generic/template/AnalyticalListPage/Component.js +1 -1
  4. package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/VisualFilterDialogController.js +1 -1
  5. package/src/sap/suite/ui/generic/template/AnalyticalListPage/manifest.json +1 -1
  6. package/src/sap/suite/ui/generic/template/Canvas/manifest.json +1 -1
  7. package/src/sap/suite/ui/generic/template/ListReport/Component.js +1 -1
  8. package/src/sap/suite/ui/generic/template/ListReport/controller/ControllerImplementation.js +22 -11
  9. package/src/sap/suite/ui/generic/template/ListReport/i18n/i18n_bg.properties +3 -3
  10. package/src/sap/suite/ui/generic/template/ListReport/i18n/i18n_hu.properties +1 -1
  11. package/src/sap/suite/ui/generic/template/ListReport/i18n/i18n_th.properties +2 -2
  12. package/src/sap/suite/ui/generic/template/ListReport/manifest.json +5 -2
  13. package/src/sap/suite/ui/generic/template/ListReport/view/fragments/DefaultVariant.fragment.xml +7 -8
  14. package/src/sap/suite/ui/generic/template/ListReport/view/fragments/MultipleViewsSingleTableMode.fragment.xml +4 -1
  15. package/src/sap/suite/ui/generic/template/ObjectPage/Component.js +1 -1
  16. package/src/sap/suite/ui/generic/template/ObjectPage/controller/RelatedAppsHandler.js +21 -9
  17. package/src/sap/suite/ui/generic/template/ObjectPage/i18n/i18n_es.properties +2 -2
  18. package/src/sap/suite/ui/generic/template/ObjectPage/manifest.json +1 -1
  19. package/src/sap/suite/ui/generic/template/ObjectPage/templateSpecificPreparationHelper.js +90 -42
  20. package/src/sap/suite/ui/generic/template/ObjectPage/view/fragments/MultipleViewsSingleTableMode.fragment.xml +3 -0
  21. package/src/sap/suite/ui/generic/template/QuickCreate/i18n/i18n_fr_CA.properties +1 -1
  22. package/src/sap/suite/ui/generic/template/QuickCreate/manifest.json +1 -1
  23. package/src/sap/suite/ui/generic/template/QuickView/manifest.json +1 -1
  24. package/src/sap/suite/ui/generic/template/designtime/controls/SmartTable.designtime.js +379 -0
  25. package/src/sap/suite/ui/generic/template/designtime/{AnalyticalListPage.designtime.js → floorplans/AnalyticalListPage.designtime.js} +4 -4
  26. package/src/sap/suite/ui/generic/template/designtime/{ListReport.designtime.js → floorplans/ListReport.designtime.js} +4 -4
  27. package/src/sap/suite/ui/generic/template/designtime/{ObjectPage.designtime.js → floorplans/ObjectPage.designtime.js} +4 -5
  28. package/src/sap/suite/ui/generic/template/designtime/utils/designtimeHelper.js +119 -96
  29. package/src/sap/suite/ui/generic/template/designtime/utils/designtimeUtils.js +395 -0
  30. package/src/sap/suite/ui/generic/template/detailTemplates/i18n/i18n_es.properties +1 -1
  31. package/src/sap/suite/ui/generic/template/fragments/EasyFilter.fragment.xml +12 -17
  32. package/src/sap/suite/ui/generic/template/fragments/MessagePage.controller.js +16 -0
  33. package/src/sap/suite/ui/generic/template/fragments/MessagePopover.fragment.xml +16 -2
  34. package/src/sap/suite/ui/generic/template/fragments/SmartFormDataField.fragment.xml +2 -0
  35. package/src/sap/suite/ui/generic/template/genericUtilities/Link.js +9 -2
  36. package/src/sap/suite/ui/generic/template/genericUtilities/controlStateWrapperFactory/SmartTableChartCommon.js +1 -1
  37. package/src/sap/suite/ui/generic/template/js/AnnotationHelper.js +8 -4
  38. package/src/sap/suite/ui/generic/template/lib/AppComponent.js +10 -3
  39. package/src/sap/suite/ui/generic/template/lib/CommonEventHandlers.js +0 -42
  40. package/src/sap/suite/ui/generic/template/lib/CommonUtils.js +6 -1
  41. package/src/sap/suite/ui/generic/template/lib/MessageButtonHelper.js +11 -7
  42. package/src/sap/suite/ui/generic/template/lib/RetryAfterHandler.js +249 -0
  43. package/src/sap/suite/ui/generic/template/lib/ShareUtils.js +1 -1
  44. package/src/sap/suite/ui/generic/template/lib/SideEffectUtil.js +64 -3
  45. package/src/sap/suite/ui/generic/template/lib/StableIdDefinition.js +7 -0
  46. package/src/sap/suite/ui/generic/template/lib/ai/EasyFilterBarHandler.js +206 -74
  47. package/src/sap/suite/ui/generic/template/lib/ai/ErrorExplanationHelper.js +47 -0
  48. package/src/sap/suite/ui/generic/template/lib/ai/FioriAIHandler.js +10 -3
  49. package/src/sap/suite/ui/generic/template/lib/i18n/i18n.properties +31 -0
  50. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ar.properties +21 -0
  51. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_bg.properties +21 -0
  52. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ca.properties +21 -0
  53. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_cnr.properties +21 -0
  54. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_cs.properties +21 -0
  55. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_cy.properties +21 -0
  56. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_da.properties +21 -0
  57. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_de.properties +22 -1
  58. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_el.properties +21 -0
  59. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en.properties +21 -0
  60. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en_GB.properties +21 -0
  61. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en_US_saprigi.properties +21 -0
  62. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_es.properties +23 -2
  63. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_es_MX.properties +21 -0
  64. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_et.properties +21 -0
  65. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_fi.properties +21 -0
  66. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_fr.properties +21 -0
  67. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_fr_CA.properties +23 -2
  68. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_hi.properties +21 -0
  69. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_hr.properties +22 -1
  70. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_hu.properties +23 -2
  71. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_id.properties +21 -0
  72. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_it.properties +21 -0
  73. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_iw.properties +21 -0
  74. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ja.properties +21 -0
  75. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_kk.properties +21 -0
  76. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ko.properties +21 -0
  77. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_lt.properties +21 -0
  78. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_lv.properties +21 -0
  79. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_mk.properties +21 -0
  80. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ms.properties +21 -0
  81. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_nl.properties +21 -0
  82. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_no.properties +21 -0
  83. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_pl.properties +21 -0
  84. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_pt.properties +21 -0
  85. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_pt_PT.properties +21 -0
  86. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ro.properties +21 -0
  87. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ru.properties +21 -0
  88. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sh.properties +21 -0
  89. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sk.properties +21 -0
  90. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sl.properties +21 -0
  91. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sr.properties +21 -0
  92. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sv.properties +21 -0
  93. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_th.properties +21 -0
  94. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_tr.properties +21 -0
  95. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_uk.properties +21 -0
  96. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_vi.properties +21 -0
  97. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_zh_CN.properties +21 -0
  98. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_zh_TW.properties +21 -0
  99. package/src/sap/suite/ui/generic/template/lib/insights/InsightsCardHelper.js +39 -23
  100. package/src/sap/suite/ui/generic/template/lib/multipleViews/MultipleTablesModeHelper.js +2 -1
  101. package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +5 -3
  102. package/src/sap/suite/ui/generic/template/library.js +3 -1
  103. package/src/sap/suite/ui/generic/template/listTemplates/fragments/MultipleViewsSingleTableMode.fragment.xml +6 -2
  104. package/src/sap/suite/ui/generic/template/manifestMerger/ChangePageConfiguration.js +28 -23
  105. package/src/sap/suite/ui/generic/template/manifestMerger/MergerUtil.js +6 -6
  106. package/src/sap/suite/ui/generic/template/themes/base/base.less +0 -4
  107. package/ui5.yaml +1 -0
@@ -205,6 +205,8 @@ ST_EASY_FILTER_INPUT_PLACEHOLDER=\u0E1B\u0E49\u0E2D\u0E19\u0E04\u0E34\u0E27\u0E2
205
205
  ST_EASY_FILTER_GO_BUTTON_TEXT=\u0E44\u0E1B
206
206
 
207
207
 
208
+ ST_AI_EE_BUTTON_LABEL=\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E04\u0E33\u0E2D\u0E18\u0E34\u0E1A\u0E32\u0E22
209
+
208
210
 
209
211
 
210
212
  ST_GENERIC_DRAFT_LOCKED_BY_USER=\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E2D\u0E37\u0E48\u0E19\u0E41\u0E01\u0E49\u0E44\u0E02\u0E2D\u0E2D\u0E1A\u0E40\u0E08\u0E04\u0E19\u0E35\u0E49\u0E42\u0E14\u0E22\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E01\u0E47\u0E1A\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\:\n {1} \n\u0E16\u0E49\u0E32\u0E04\u0E38\u0E13\u0E19\u0E33\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E21\u0E32\u0E43\u0E0A\u0E49 \u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19\u0E08\u0E30\u0E2A\u0E39\u0E0D\u0E2B\u0E32\u0E22
@@ -314,3 +316,22 @@ DIALOG_TITLE_NEW_ACTION_FOR_CREATE=\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E2D\u0E2D\u0
314
316
 
315
317
  DIALOG_ACTION_BUTTON_NEW_ACTION_FOR_CREATE=\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D
316
318
 
319
+ CONTENT_SWITCH=\u0E01\u0E32\u0E23\u0E2A\u0E25\u0E31\u0E1A\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32
320
+
321
+
322
+ ST_GENERIC_503_SERVICE_UNAVAILABLE=\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22 \u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E0A\u0E31\u0E48\u0E27\u0E04\u0E23\u0E32\u0E27
323
+
324
+ ST_GENERIC_503_AUTO_RETRY_MSG=\u0E25\u0E2D\u0E07\u0E43\u0E2B\u0E21\u0E48\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E43\u0E19 {0} \u0E27\u0E34\u0E19\u0E32\u0E17\u0E35
325
+
326
+ ST_GENERIC_503_CANCEL_RETRY=\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22 \u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 \u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E25\u0E2D\u0E07\u0E43\u0E2B\u0E21\u0E48\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?
327
+
328
+ RETRY=\u0E25\u0E2D\u0E07\u0E43\u0E2B\u0E21\u0E48
329
+
330
+ ST_GENERIC_503_RETRY_MSG_SAME_DAY=\u0E40\u0E23\u0E32\u0E04\u0E32\u0E14\u0E27\u0E48\u0E32\u0E08\u0E30\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E43\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48 {0}
331
+
332
+ ST_GENERIC_503_RETRY_MSG_OTHER_DAY=\u0E40\u0E23\u0E32\u0E04\u0E32\u0E14\u0E27\u0E48\u0E32\u0E08\u0E30\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E43\u0E19\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48 {0} \u0E40\u0E27\u0E25\u0E32 {1}
333
+
334
+ ST_GENERIC_503_RETRY_MSG_TIME_UNKNWON=\u0E01\u0E23\u0E38\u0E13\u0E32\u0E25\u0E2D\u0E07\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E20\u0E32\u0E22\u0E2B\u0E25\u0E31\u0E07
335
+
336
+ ST_GENERIC_503_SOURCE_MESSAGE=\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E15\u0E49\u0E19\u0E41\u0E1A\u0E1A\:
337
+
@@ -205,6 +205,8 @@ ST_EASY_FILTER_INPUT_PLACEHOLDER=Listeye filtre uygulamak i\u00E7in do\u011Fal d
205
205
  ST_EASY_FILTER_GO_BUTTON_TEXT=Git
206
206
 
207
207
 
208
+ ST_AI_EE_BUTTON_LABEL=A\u00E7\u0131klama olu\u015Ftur
209
+
208
210
 
209
211
 
210
212
  ST_GENERIC_DRAFT_LOCKED_BY_USER=Bu nesne ba\u015Fka kullan\u0131c\u0131 taraf\u0131ndan de\u011Fi\u015Fiklikler saklanmadan i\u015Flendi\: \n{1} \nNesneyi devral\u0131rsan\u0131z de\u011Fi\u015Fiklikler kaybolacak.
@@ -314,3 +316,22 @@ DIALOG_TITLE_NEW_ACTION_FOR_CREATE=Nesne yarat
314
316
 
315
317
  DIALOG_ACTION_BUTTON_NEW_ACTION_FOR_CREATE=Devam et
316
318
 
319
+ CONTENT_SWITCH=\u0130\u00E7erik anahtar\u0131
320
+
321
+
322
+ ST_GENERIC_503_SERVICE_UNAVAILABLE=\u00DCzg\u00FCn\u00FCz, bu servis ge\u00E7ici olarak kullan\u0131lam\u0131yor.
323
+
324
+ ST_GENERIC_503_AUTO_RETRY_MSG={0} saniye i\u00E7inde otomatik yeniden deneme.
325
+
326
+ ST_GENERIC_503_CANCEL_RETRY=\u00DCzg\u00FCn\u00FCz, bu servis h\u00E2l\u00E2 kullan\u0131lam\u0131yor. Yeniden denemek veya i\u015Flemi iptal etmek ister misiniz?
327
+
328
+ RETRY=Yeniden dene
329
+
330
+ ST_GENERIC_503_RETRY_MSG_SAME_DAY={0} saatinde tekrar kullan\u0131labilir olaca\u011F\u0131n\u0131 bekliyoruz.
331
+
332
+ ST_GENERIC_503_RETRY_MSG_OTHER_DAY={0} tarihinde ve {1} saatinde tekrar kullan\u0131labilir olaca\u011F\u0131n\u0131 bekliyoruz.
333
+
334
+ ST_GENERIC_503_RETRY_MSG_TIME_UNKNWON=Daha sonra yeniden deneyin.
335
+
336
+ ST_GENERIC_503_SOURCE_MESSAGE=Kaynak iletisi\:
337
+
@@ -205,6 +205,8 @@ ST_EASY_FILTER_INPUT_PLACEHOLDER=\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u04
205
205
  ST_EASY_FILTER_GO_BUTTON_TEXT=\u041F\u0443\u0441\u043A
206
206
 
207
207
 
208
+ ST_AI_EE_BUTTON_LABEL=\u0413\u0435\u043D\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u043F\u043E\u044F\u0441\u043D\u0435\u043D\u043D\u044F
209
+
208
210
 
209
211
 
210
212
  ST_GENERIC_DRAFT_LOCKED_BY_USER=\u0406\u043D\u0448\u0438\u0439 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0432 \u0446\u0435\u0439 \u043E\u0431''\u0454\u043A\u0442 \u0431\u0435\u0437 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F \u0437\u043C\u0456\u043D\:\n{1}\n\u042F\u043A\u0449\u043E \u043F\u0440\u0438\u0439\u043D\u044F\u0442\u0438, \u0437\u043C\u0456\u043D\u0438 \u0431\u0443\u0434\u0443\u0442\u044C \u0432\u0442\u0440\u0430\u0447\u0435\u043D\u0456.
@@ -314,3 +316,22 @@ DIALOG_TITLE_NEW_ACTION_FOR_CREATE=\u0421\u0442\u0432\u043E\u0440\u0438\u0442\u0
314
316
 
315
317
  DIALOG_ACTION_BUTTON_NEW_ACTION_FOR_CREATE=\u041F\u0440\u043E\u0434\u043E\u0432\u0436\u0438\u0442\u0438
316
318
 
319
+ CONTENT_SWITCH=\u041F\u0435\u0440\u0435\u043C\u0438\u043A\u0430\u0447 \u0432\u043C\u0456\u0441\u0442\u0443
320
+
321
+
322
+ ST_GENERIC_503_SERVICE_UNAVAILABLE=\u0412\u0438\u0431\u0430\u0447\u0442\u0435, \u0446\u044F \u0441\u043B\u0443\u0436\u0431\u0430 \u0442\u0438\u043C\u0447\u0430\u0441\u043E\u0432\u043E \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430.
323
+
324
+ ST_GENERIC_503_AUTO_RETRY_MSG=\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u0435 \u043F\u043E\u0432\u0442\u043E\u0440\u0435\u043D\u043D\u044F \u0437\u0430 {0} \u0441\u0435\u043A\u0443\u043D\u0434(\u0438).
325
+
326
+ ST_GENERIC_503_CANCEL_RETRY=\u041D\u0430 \u0436\u0430\u043B\u044C, \u0446\u0435\u0439 \u0441\u0435\u0440\u0432\u0456\u0441 \u0449\u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0438\u0439. \u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0438 \u0441\u043F\u0440\u043E\u0431\u0443 \u0447\u0438 \u0441\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0435\u0440\u0430\u0446\u0456\u044E?
327
+
328
+ RETRY=\u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0438 \u0441\u043F\u0440\u043E\u0431\u0443
329
+
330
+ ST_GENERIC_503_RETRY_MSG_SAME_DAY=\u041C\u0438 \u043E\u0447\u0456\u043A\u0443\u0454\u043C\u043E, \u0449\u043E \u0432\u043E\u043D\u0430 \u0437\u043D\u043E\u0432 \u0441\u0442\u0430\u043D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u044E \u043E {0}.
331
+
332
+ ST_GENERIC_503_RETRY_MSG_OTHER_DAY=\u041C\u0438 \u043E\u0447\u0456\u043A\u0443\u0454\u043C\u043E, \u0449\u043E \u0432\u043E\u043D\u0430 \u0437\u043D\u043E\u0432 \u0441\u0442\u0430\u043D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u044E {0} \u043E {1}.
333
+
334
+ ST_GENERIC_503_RETRY_MSG_TIME_UNKNWON=\u041F\u043E\u0432\u0442\u043E\u0440\u0456\u0442\u044C \u0441\u043F\u0440\u043E\u0431\u0443 \u043F\u0456\u0437\u043D\u0456\u0448\u0435.
335
+
336
+ ST_GENERIC_503_SOURCE_MESSAGE=\u0412\u0438\u0445\u0456\u0434\u043D\u0435 \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F\:
337
+
@@ -205,6 +205,8 @@ ST_EASY_FILTER_INPUT_PLACEHOLDER=Nh\u1EADp truy v\u1EA5n c\u1EE7a b\u1EA1n b\u1E
205
205
  ST_EASY_FILTER_GO_BUTTON_TEXT=Ti\u00EA\u0301n ha\u0300nh
206
206
 
207
207
 
208
+ ST_AI_EE_BUTTON_LABEL=T\u1EA1o gi\u1EA3i th\u00EDch
209
+
208
210
 
209
211
 
210
212
  ST_GENERIC_DRAFT_LOCKED_BY_USER=Ng\u01B0\u01A1\u0300i du\u0300ng kha\u0301c \u0111a\u0303 hi\u00EA\u0323u chi\u0309nh \u0111\u00F4\u0301i t\u01B0\u01A1\u0323ng na\u0300y ma\u0300 kh\u00F4ng l\u01B0u ca\u0301c thay \u0111\u00F4\u0309i\: \n{1} \nN\u00EA\u0301u ba\u0323n ti\u00EA\u0301p qua\u0309n, mo\u0323i thay \u0111\u00F4\u0309i se\u0303 bi\u0323 m\u00E2\u0301t.
@@ -314,3 +316,22 @@ DIALOG_TITLE_NEW_ACTION_FOR_CREATE=Ta\u0323o \u0111\u00F4\u0301i t\u01B0\u01A1\u
314
316
 
315
317
  DIALOG_ACTION_BUTTON_NEW_ACTION_FOR_CREATE=Ti\u00EA\u0301p tu\u0323c
316
318
 
319
+ CONTENT_SWITCH=Chuy\u1EC3n \u0111\u1ED5i n\u1ED9i dung
320
+
321
+
322
+ ST_GENERIC_503_SERVICE_UNAVAILABLE=R\u00E2\u0301t ti\u00EA\u0301c, di\u0323ch vu\u0323 na\u0300y ta\u0323m th\u01A1\u0300i kh\u00F4ng kha\u0309 du\u0323ng.
323
+
324
+ ST_GENERIC_503_AUTO_RETRY_MSG=T\u01B0\u0323 \u0111\u1ED9ng th\u01B0\u0309 la\u0323i sau {0} gi\u00E2y.
325
+
326
+ ST_GENERIC_503_CANCEL_RETRY=R\u1EA5t ti\u1EBFc, d\u1ECBch v\u1EE5 n\u00E0y v\u1EABn kh\u00F4ng kh\u1EA3 d\u1EE5ng. B\u1EA1n c\u00F3 mu\u1ED1n th\u1EED l\u1EA1i ho\u1EB7c h\u1EE7y thao t\u00E1c kh\u00F4ng?
327
+
328
+ RETRY=Th\u01B0\u0309 la\u0323i
329
+
330
+ ST_GENERIC_503_RETRY_MSG_SAME_DAY=Chu\u0301ng t\u00F4i hy vo\u0323ng no\u0301 se\u0303 kha\u0309 du\u0323ng tr\u01A1\u0309 la\u0323i lu\u0301c {0}.
331
+
332
+ ST_GENERIC_503_RETRY_MSG_OTHER_DAY=Chu\u0301ng t\u00F4i hy vo\u0323ng no\u0301 se\u0303 kha\u0309 du\u0323ng tr\u01A1\u0309 la\u0323i v\u00E0o ng\u00E0y {0} l\u00FAc {1}.
333
+
334
+ ST_GENERIC_503_RETRY_MSG_TIME_UNKNWON=Vui lo\u0300ng th\u01B0\u0309 la\u0323i sau.
335
+
336
+ ST_GENERIC_503_SOURCE_MESSAGE=Th\u00F4ng ba\u0301o ngu\u00F4\u0300n\:
337
+
@@ -205,6 +205,8 @@ ST_EASY_FILTER_INPUT_PLACEHOLDER=\u4EE5\u81EA\u7136\u8BED\u8A00\u8F93\u5165\u67E
205
205
  ST_EASY_FILTER_GO_BUTTON_TEXT=\u6267\u884C
206
206
 
207
207
 
208
+ ST_AI_EE_BUTTON_LABEL=\u751F\u6210\u8BF4\u660E
209
+
208
210
 
209
211
 
210
212
  ST_GENERIC_DRAFT_LOCKED_BY_USER=\u53E6\u4E00\u7528\u6237\u5BF9\u6B64\u5BF9\u8C61\u8FDB\u884C\u4E86\u7F16\u8F91\u800C\u672A\u4FDD\u5B58\u6240\u505A\u7684\u66F4\u6539\uFF1A \n{1} \n\u5982\u679C\u53D6\u4EE3\uFF0C\u4EFB\u4F55\u66F4\u6539\u5747\u4F1A\u4E22\u5931\u3002
@@ -314,3 +316,22 @@ DIALOG_TITLE_NEW_ACTION_FOR_CREATE=\u521B\u5EFA\u5BF9\u8C61
314
316
 
315
317
  DIALOG_ACTION_BUTTON_NEW_ACTION_FOR_CREATE=\u7EE7\u7EED
316
318
 
319
+ CONTENT_SWITCH=\u5185\u5BB9\u5207\u6362
320
+
321
+
322
+ ST_GENERIC_503_SERVICE_UNAVAILABLE=\u62B1\u6B49\uFF0C\u6B64\u670D\u52A1\u6682\u65F6\u4E0D\u53EF\u7528\u3002
323
+
324
+ ST_GENERIC_503_AUTO_RETRY_MSG={0} \u79D2\u540E\u81EA\u52A8\u91CD\u8BD5\u3002
325
+
326
+ ST_GENERIC_503_CANCEL_RETRY=\u62B1\u6B49\uFF0C\u6B64\u670D\u52A1\u4ECD\u4E0D\u53EF\u7528\u3002\u8981\u91CD\u8BD5\u8FD8\u662F\u53D6\u6D88\u64CD\u4F5C\uFF1F
327
+
328
+ RETRY=\u91CD\u8BD5
329
+
330
+ ST_GENERIC_503_RETRY_MSG_SAME_DAY=\u9884\u671F\u5176\u5C06\u4E8E {0} \u91CD\u65B0\u53EF\u7528\u3002
331
+
332
+ ST_GENERIC_503_RETRY_MSG_OTHER_DAY=\u9884\u671F\u5176\u5C06\u4E8E {0} \u7684 {1} \u91CD\u65B0\u53EF\u7528\u3002
333
+
334
+ ST_GENERIC_503_RETRY_MSG_TIME_UNKNWON=\u8BF7\u7A0D\u540E\u91CD\u8BD5\u3002
335
+
336
+ ST_GENERIC_503_SOURCE_MESSAGE=\u6E90\u6D88\u606F\uFF1A
337
+
@@ -205,6 +205,8 @@ ST_EASY_FILTER_INPUT_PLACEHOLDER=\u8ACB\u4F7F\u7528\u81EA\u7136\u8A9E\u8A00\u8F3
205
205
  ST_EASY_FILTER_GO_BUTTON_TEXT=\u958B\u59CB
206
206
 
207
207
 
208
+ ST_AI_EE_BUTTON_LABEL=\u7522\u751F\u8AAA\u660E
209
+
208
210
 
209
211
 
210
212
  ST_GENERIC_DRAFT_LOCKED_BY_USER=\u53E6\u4E00\u500B\u4F7F\u7528\u8005\u5DF2\u7DE8\u8F2F\u6B64\u7269\u4EF6\uFF0C\u4E14\u6C92\u6709\u5132\u5B58\u66F4\u6539\uFF1A \n{1} \n\u5982\u679C\u60A8\u63A5\u624B\u8655\u7406\uFF0C\u5247\u66F4\u6539\u5C07\u6703\u907A\u5931\u3002
@@ -314,3 +316,22 @@ DIALOG_TITLE_NEW_ACTION_FOR_CREATE=\u5EFA\u7ACB\u7269\u4EF6
314
316
 
315
317
  DIALOG_ACTION_BUTTON_NEW_ACTION_FOR_CREATE=\u7E7C\u7E8C
316
318
 
319
+ CONTENT_SWITCH=\u5167\u5BB9\u8F49\u63DB\u5668
320
+
321
+
322
+ ST_GENERIC_503_SERVICE_UNAVAILABLE=\u62B1\u6B49\uFF0C\u66AB\u6642\u7121\u6CD5\u4F7F\u7528\u6B64\u670D\u52D9\u3002
323
+
324
+ ST_GENERIC_503_AUTO_RETRY_MSG=\u65BC {0} \u79D2\u5F8C\u81EA\u52D5\u91CD\u8A66\u3002
325
+
326
+ ST_GENERIC_503_CANCEL_RETRY=\u62B1\u6B49\uFF0C\u6B64\u670D\u52D9\u4ECD\u7121\u6CD5\u4F7F\u7528\u3002\u60A8\u8981\u91CD\u8A66\u6216\u53D6\u6D88\u52D5\u4F5C\u55CE\uFF1F
327
+
328
+ RETRY=\u91CD\u8A66
329
+
330
+ ST_GENERIC_503_RETRY_MSG_SAME_DAY=\u6211\u5011\u9810\u671F\u53EF\u5728 {0} \u91CD\u65B0\u63D0\u4F9B\u3002
331
+
332
+ ST_GENERIC_503_RETRY_MSG_OTHER_DAY=\u6211\u5011\u9810\u671F\u53EF\u5728 {0} {1} \u91CD\u65B0\u63D0\u4F9B\u3002
333
+
334
+ ST_GENERIC_503_RETRY_MSG_TIME_UNKNWON=\u8ACB\u7A0D\u5F8C\u518D\u8A66\u4E00\u6B21\u3002
335
+
336
+ ST_GENERIC_503_SOURCE_MESSAGE=\u4F86\u6E90\u8A0A\u606F\uFF1A
337
+
@@ -5,8 +5,9 @@ sap.ui.define(["sap/suite/ui/generic/template/genericUtilities/metadataAnalyser"
5
5
  "sap/suite/ui/generic/template/listTemplates/semanticDateRangeTypeHelper",
6
6
  "sap/ui/core/library",
7
7
  "sap/base/strings/formatMessage",
8
- "sap/suite/ui/generic/template/genericUtilities/FeLogger"
9
- ], function (metadataAnalyser, filterHelper, SelectionVariant, deepExtend, semanticDateRangeTypeHelper, SapCoreLibrary, formatMessage, FeLogger) {
8
+ "sap/suite/ui/generic/template/genericUtilities/FeLogger",
9
+ "sap/base/util/ObjectPath"
10
+ ], function (metadataAnalyser, filterHelper, SelectionVariant, deepExtend, semanticDateRangeTypeHelper, SapCoreLibrary, formatMessage, FeLogger, ObjectPath) {
10
11
  "use strict";
11
12
 
12
13
  var InsightsCardHelper = {};
@@ -289,8 +290,7 @@ sap.ui.define(["sap/suite/ui/generic/template/genericUtilities/metadataAnalyser"
289
290
  if (bIsValidSemanticDateRange) {
290
291
  filterHelper.setFilterRestrictionToSemanticDateRange(oFilterProp, false);
291
292
  filterHelper.addDateRangeValueToSV(oCardDefinition, oFilterProp, sDefaultValue, oSelectionVariant, aFilterLabel);
292
- } else {
293
- if (sParamActualValue) {
293
+ } else if (sParamActualValue) {
294
294
  filterHelper.addFiltervalues(oSmartFilterbar, oFilterProp.name, oSelectionVariant, aFilterLabel);
295
295
  } else if (sDefaultValue) {
296
296
  var sText = filterHelper.getRelatedTextToRange({Low : sDefaultValue}, aFilterLabel, oSmartFilterbar, oFilterProp.name);
@@ -298,7 +298,6 @@ sap.ui.define(["sap/suite/ui/generic/template/genericUtilities/metadataAnalyser"
298
298
  } else {
299
299
  oSelectionVariant.addSelectOption(oFilterProp.name, "I", "EQ", sFilterVal);
300
300
  }
301
- }
302
301
 
303
302
  oFinal[oFilterProp.name] = {
304
303
  value: oSelectionVariant.toJSONString(),
@@ -585,21 +584,40 @@ sap.ui.define(["sap/suite/ui/generic/template/genericUtilities/metadataAnalyser"
585
584
  return oSapCardContent;
586
585
  };
587
586
 
588
- var fnResolveChartProperties = function (oInnerChart) {
589
- var oVizProperties = {
590
- "categoryAxis":{
591
- "title":{
592
- "visible": true
593
- }
594
- },
595
- "valueAxis": {
596
- "title":{
597
- "visible": true
598
- }
599
- }
600
- };
601
- oInnerChart.setVizProperties(oVizProperties);
602
- return oInnerChart.getVizProperties();
587
+ /**
588
+ * Extracts relevant visualization properties from the given vizProperties object based on the specified key.
589
+ *
590
+ * @param {Object} oVizProperties - The visualization properties object.
591
+ * @param {string} key - The key to extract properties from within the vizProperties object.
592
+ * @returns {Object|undefined} An object containing the filtered properties, or undefined if the key does not exist in the vizProperties object.
593
+ */
594
+ function fnExtractRelevantVizProperties(oVizProperties, key) {
595
+ const aPropertiesToFilter = ["axisTick", "axisLine", "label.visible", "label.formatString", "title.visible"];
596
+ if (!oVizProperties?.[key]) {
597
+ return undefined;
598
+ }
599
+ const oValueOrCategoryAxis = oVizProperties[key];
600
+ const oFilteredProperties = {};
601
+ aPropertiesToFilter.forEach(property => {
602
+ const value = ObjectPath.get(property, oValueOrCategoryAxis);
603
+ if (value !== undefined) {
604
+ ObjectPath.set(property, value, oFilteredProperties);
605
+ }
606
+ });
607
+ return oFilteredProperties;
608
+ }
609
+
610
+ const fnResolveChartProperties = function (oInnerChart) {
611
+ const oVizProperties = oInnerChart.getProperty("vizProperties");
612
+ const oAllVizProperties = oInnerChart.getVizProperties();
613
+ const oChartProperties = Object.assign({}, oVizProperties);
614
+ const aAxisKeys = ["valueAxis", "valueAxis2", "categoryAxis", "categoryAxis2"];
615
+ aAxisKeys.forEach(key => {
616
+ if (oAllVizProperties[key]) {
617
+ oChartProperties[key] = fnExtractRelevantVizProperties(oAllVizProperties, key);
618
+ }
619
+ });
620
+ return oChartProperties;
603
621
  };
604
622
 
605
623
  var fnResolveChartMeasures = function (aMeasureDetails, aVisibleMeasure) {
@@ -803,8 +821,7 @@ sap.ui.define(["sap/suite/ui/generic/template/genericUtilities/metadataAnalyser"
803
821
  oColumnObject.additionalText = "{= $" + sColumnValue + " === '' ? '' : $" + sColumnValue + "}";
804
822
  }
805
823
  oColumnObject.identifier = true;
806
- } else {
807
- if (sTextArrangementType === "TextOnly") {
824
+ } else if (sTextArrangementType === "TextOnly") {
808
825
  oColumnObject['value'] = "{= $" + sColumnKeyDescription + " === '' ? '' : $" + sColumnKeyDescription + "}";
809
826
  } else if (sTextArrangementType === "TextLast") {
810
827
  oColumnObject['value'] = "{= $" + sColumnValue + " === '' ? '' : $" + sColumnValue + "}" + "{= $" + sColumnKeyDescription + " === '' ? '' : ' (' + ($" + sColumnKeyDescription + ") + ')'}";
@@ -813,7 +830,6 @@ sap.ui.define(["sap/suite/ui/generic/template/genericUtilities/metadataAnalyser"
813
830
  } else { // Default case
814
831
  oColumnObject['value'] = "{= $" + sColumnKeyDescription + " === '' ? '' : $" + sColumnKeyDescription + "}" + "{= $" + sColumnValue + " === '' ? '' : ' (' + ($" + sColumnValue + ") + ')'}";
815
832
  }
816
- }
817
833
  } else {
818
834
  oColumnObject['value'] = sColumnValue;
819
835
  if (bIsPropertySemanticKey) {
@@ -410,7 +410,8 @@ sap.ui.define([
410
410
  oViewMeta.implementingHelperAttributes.searchFieldWrapper.attachStateChanged(fnHandler);
411
411
  });
412
412
  });
413
- }
413
+ },
414
+ bVMConnection: true
414
415
  };
415
416
  }
416
417
 
@@ -2042,18 +2042,20 @@ sap.ui.define(["sap/ui/base/Object",
2042
2042
  }
2043
2043
 
2044
2044
  function fnTransferMessageParametersToGlobalModelAndDisplayMessage(mParameters) {
2045
- var sText, sDescription, sMessageType;
2045
+ var sText, sDescription, sMessageType, aAdditionalContent;
2046
2046
 
2047
2047
  if (mParameters) {
2048
2048
  sText = mParameters.text;
2049
2049
  sMessageType = mParameters.messageType || IllustratedMessageType.ErrorScreen;
2050
2050
  sDescription = mParameters.description;
2051
+ aAdditionalContent = mParameters.additionalContent;
2051
2052
  }
2052
2053
 
2053
2054
  oTemplateContract.oTemplatePrivateGlobalModel.setProperty("/generic/messagePage", {
2054
2055
  text: sText,
2055
2056
  messageType: sMessageType,
2056
- description: sDescription
2057
+ description: sDescription,
2058
+ additionalContent: aAdditionalContent
2057
2059
  });
2058
2060
 
2059
2061
  if (oTemplateContract.oFlexibleColumnLayoutHandler){
@@ -3165,7 +3167,7 @@ sap.ui.define(["sap/ui/base/Object",
3165
3167
  * @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
3166
3168
  * @public
3167
3169
  * @extends sap.ui.base.Object
3168
- * @version 1.129.1
3170
+ * @version 1.130.2
3169
3171
  * @since 1.30.0
3170
3172
  * @alias sap.suite.ui.generic.template.lib.NavigationController
3171
3173
  */
@@ -19,6 +19,7 @@ sap.ui.define([
19
19
  // library dependencies
20
20
  "sap/f/library",
21
21
  "sap/fe/placeholder/library",
22
+ "sap/fe/controls/library",
22
23
  "sap/insights/library",
23
24
  "sap/m/library",
24
25
  "sap/suite/ui/microchart/library",
@@ -47,6 +48,7 @@ sap.ui.define([
47
48
  dependencies: [
48
49
  "sap.f",
49
50
  "sap.fe.placeholder",
51
+ "sap.fe.controls",
50
52
  "sap.insights",
51
53
  "sap.m",
52
54
  "sap.suite.ui.microchart",
@@ -62,7 +64,7 @@ sap.ui.define([
62
64
  interfaces: [],
63
65
  controls: [],
64
66
  elements: [],
65
- version: "1.129.1",
67
+ version: "1.130.2",
66
68
  extensions: {
67
69
  //Configuration used for rule loading of Support Assistant
68
70
  "sap.ui.support": {
@@ -27,11 +27,15 @@
27
27
  </SegmentedButton>
28
28
  </template:then>
29
29
  <template:else>
30
- <Select id="{:= ${parameter>/stableId}.getStableId({type: 'QuickVariantSelection', subType: 'VariantSelect'})}"
30
+ <core:InvisibleText id="{:= ${parameter>/stableId}.getStableId({type: 'QuickVariantSelection', subType: 'InvisibleText'})}"
31
+ text="{i18n>CONTENT_SWITCH}"/>
32
+ <Select id="{:= ${parameter>/stableId}.getStableId({type: 'QuickVariantSelection', subType: 'VariantSelect'})}"
31
33
  selectedKey="{_templPriv>/alp/multipleViews/selectedKey}"
32
34
  enabled="{= !${_templPriv>/alp/filterChanged} }"
33
35
  autoAdjustWidth="true"
34
- forceSelection="true">
36
+ forceSelection="true"
37
+ ariaLabelledBy="{:= ${parameter>/stableId}.getStableId({type: 'QuickVariantSelection', subType: 'InvisibleText'})}"
38
+ >
35
39
  <items>
36
40
  <template:repeat list="{parameter>/settings/quickVariantSelection/variants}" var="viewItem">
37
41
  <core:Item id="{:= ${parameter>/stableId}.getStableId({type: 'AnalyticalListPageTable', subType: 'SegmentedButtonItem', sQuickVariantKey: ${viewItem>key}})}"
@@ -7,7 +7,7 @@ sap.ui.define([
7
7
  var oLogger = new FeLogger("manifestMerger.ChangePageConfiguration").getLogger();
8
8
 
9
9
  /**
10
- * This class holds the function which will be invoked from the flex layer when the manifest.appdescr_variant has
10
+ * This class holds the function which will be invoked from the flex layer when the manifest.appdescr_variant has
11
11
  * the changeType "appdescr_ui_generic_app_changePageConfiguration" to extend the Manifest settings
12
12
  * @namespace sap.suite.ui.generic.template.manifestMerger.ChangePageConfiguration
13
13
  * @private
@@ -15,18 +15,18 @@ sap.ui.define([
15
15
 
16
16
  /**
17
17
  * @typedef {Object} ChangeContent
18
- *
18
+ *
19
19
  * @property {object} parentPage - The parent page details
20
20
  * @property {string} parentPage.component - The source page component where the new page will be added
21
21
  * @property {string} parentPage.entitySet - The source page entityset name where the new page will be added
22
- *
22
+ *
23
23
  * @property {object} entityPropertyChange - The details of the configuration to be changed
24
24
  * @property {string} entityPropertyChange.propertyPath - The property path where the change has to be added
25
25
  * @property {string} entityPropertyChange.operation - The operation type
26
26
  * @property {object} entityPropertyChange.propertyValue - The property details that has to be modified
27
- *
27
+ *
28
28
  */
29
-
29
+
30
30
  /**
31
31
  * @typedef {Object} Change
32
32
  * @property {string} changeType - The app descriptor change type name
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * @param {object} oManifest - Contains the existing Manifest of the application
40
40
  * @param {Change} oChange - Contains the setting changes that the user wants to add to the oManifest
41
41
  * The oChange for changePageConfiguration should have the following structure:
42
- * @example
42
+ * @example
43
43
  * {
44
44
  * "changeType": "appdescr_ui_generic_app_changePageConfiguration", // the app descriptor change type name
45
45
  * "layer": Layer.CUSTOMER, // The target layer, can have values "CUSTOMER" , "CUSTOMER_BASE", "PARTNER" or "VENDOR"
@@ -50,15 +50,15 @@ sap.ui.define([
50
50
  * },
51
51
  * "entityPropertyChange": { // details of the configuration to be changed
52
52
  * "propertyPath": "component/settings", // property path where the change has to be added
53
- * "operation": "UPSERT", // operation type
53
+ * "operation": "UPSERT", // operation type
54
54
  * "propertyValue": { // contains the property details that has to be modified
55
55
  * "tableType": "ResponsiveTable"
56
56
  * }
57
57
  * }
58
58
  * }
59
59
  * }
60
- *
61
- * @example
60
+ *
61
+ * @example
62
62
  * {
63
63
  * "changeType": "appdescr_ui_generic_app_changePageConfiguration", // the app descriptor change type name
64
64
  * "layer": Layer.VENDOR, // The target layer, can have values "CUSTOMER" , "CUSTOMER_BASE", "PARTNER" or "VENDOR"
@@ -68,14 +68,14 @@ sap.ui.define([
68
68
  * },
69
69
  * "entityPropertyChange": { // details of the configuration to be changed
70
70
  * "propertyPath": "settings", // property path where the change has to be added
71
- * "operation": "UPSERT", // operation type
71
+ * "operation": "UPSERT", // operation type
72
72
  * "propertyValue": { // contains the property details that has to be modified
73
73
  * "statePreservationMode": "persistence"
74
74
  * }
75
75
  * }
76
76
  * }
77
77
  * }
78
- *
78
+ *
79
79
  * @returns {object} the updated oManifest containing the oChange settings
80
80
  * @protected
81
81
  */
@@ -92,20 +92,25 @@ sap.ui.define([
92
92
  oPageStructure = MergerUtil.iterateAndFind(oManifest["sap.ui.generic.app"], sParentEntitySet, sParentComponent);
93
93
  }
94
94
  var oPropertyChange = oChangeContent.entityPropertyChange;
95
- var aPropertyKeys = Object.keys(oPropertyChange.propertyValue);
96
- aPropertyKeys.forEach(function(sCurrentKey) {
95
+ if (typeof oPropertyChange.propertyValue !== "object" || oPropertyChange.propertyValue === null) {
97
96
  var aPropertyPath = oPropertyChange.propertyPath.split("/");
98
- aPropertyPath.push(sCurrentKey);
99
- var vVal = ObjectPath.get(aPropertyPath, oPageStructure);
100
- if (vVal && typeof vVal === "object") {
101
- var oPropertyPathContent = ObjectPath.create(aPropertyPath, oPageStructure);
102
- Object.assign(oPropertyPathContent, oPropertyChange.propertyValue[sCurrentKey]);
103
- } else {
104
- ObjectPath.set(aPropertyPath, oPropertyChange.propertyValue[sCurrentKey], oPageStructure);
105
- }
106
- });
97
+ ObjectPath.set(aPropertyPath, oPropertyChange.propertyValue, oPageStructure);
98
+ } else {
99
+ var aPropertyKeys = Object.keys(oPropertyChange.propertyValue);
100
+ aPropertyKeys.forEach(function (sCurrentKey) {
101
+ var aPropertyPath = oPropertyChange.propertyPath.split("/");
102
+ aPropertyPath.push(sCurrentKey);
103
+ var vVal = ObjectPath.get(aPropertyPath, oPageStructure);
104
+ if (vVal && typeof vVal === "object") {
105
+ var oPropertyPathContent = ObjectPath.create(aPropertyPath, oPageStructure);
106
+ Object.assign(oPropertyPathContent, oPropertyChange.propertyValue[sCurrentKey]);
107
+ } else {
108
+ ObjectPath.set(aPropertyPath, oPropertyChange.propertyValue[sCurrentKey], oPageStructure);
109
+ }
110
+ });
111
+ }
107
112
  return oManifest;
108
113
  }
109
114
  };
110
115
  return changePageConfiguration;
111
- });
116
+ });
@@ -5,16 +5,16 @@ sap.ui.define([
5
5
 
6
6
  var oLogger = new FeLogger("manifestMerger.MergerUil").getLogger();
7
7
  /**
8
- *
8
+ *
9
9
  * This class holds the helper functions that are invoked from the manifestMergers
10
10
  * @private
11
11
  */
12
12
  var GLOBAL_MANIFEST_CHANGE_COMPONENT = "sap.suite.ui.generic.template";
13
13
  var mergerUtil = {
14
14
 
15
- /**
15
+ /**
16
16
  * Iterate through the pages object to find the page map that matches sEntityKey and sPageComponent value
17
- * @param {object} oPages - The pages object which is provided in the Manifest which will be iterated through
17
+ * @param {object} oPages - The pages object which is provided in the Manifest which will be iterated through
18
18
  * to find the corresponding object which contains the keys entityset and component.name
19
19
  * @param {string} sEntityKey - EntitySet name of the parent page where the user would like to add new changes
20
20
  * @param {string} sPageComponent - Component name of parent page where the user would like to add new changes
@@ -63,8 +63,8 @@ sap.ui.define([
63
63
  return oPageStructure;
64
64
  },
65
65
 
66
- /**
67
- * Function used to check the consistency of the oChangeContent structure to ensure all the
66
+ /**
67
+ * Function used to check the consistency of the oChangeContent structure to ensure all the
68
68
  * mandatory parameters are provided and are of valid type
69
69
  * @param {object} oChangeContent - Contains the changes that the user wants to add to the oManifest
70
70
  * @param {string} sMergerType - The type of merger operation that is being executed, can hold value "ADD" or "MODIFY"
@@ -117,7 +117,7 @@ sap.ui.define([
117
117
  if (!oEntityPropertyChange.operation || oEntityPropertyChange.operation !== "UPSERT") {
118
118
  throw new Error("Invalid change format: The mandatory 'operation' is not defined or is not valid type. Please define the mandatory property 'operation' with type 'UPSERT");
119
119
  }
120
- if (!oEntityPropertyChange.propertyValue) {
120
+ if (oEntityPropertyChange.propertyValue === undefined) {
121
121
  throw new Error("Invalid change format: The mandatory 'propertyValue' is not defined. Please define the mandatory property 'propertyValue'");
122
122
  }
123
123
  }
@@ -4,8 +4,4 @@
4
4
 
5
5
  .sapSmartTemplatesCreateDialog {
6
6
  max-width: fit-content;
7
- }
8
-
9
- .sapSmartTemplateEasyFilterInputPadding {
10
- padding: 0.5rem 1rem;
11
7
  }
package/ui5.yaml CHANGED
@@ -20,6 +20,7 @@ framework:
20
20
  - name: sap.f
21
21
  - name: sap.insights
22
22
  - name: sap.fe.placeholder
23
+ - name: sap.fe.controls
23
24
  - name: sap.cards.ap.common
24
25
  - name: sap.ui.rta
25
26
  - name: themelib_sap_horizon