@openui5/sap.ui.rta 1.94.0 → 1.95.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 (90) hide show
  1. package/.reuse/dep5 +1 -6
  2. package/THIRDPARTY.txt +3 -9
  3. package/package.json +6 -6
  4. package/src/sap/ui/rta/.library +1 -1
  5. package/src/sap/ui/rta/Client.js +1 -1
  6. package/src/sap/ui/rta/RuntimeAuthoring.js +1 -1
  7. package/src/sap/ui/rta/Utils.js +73 -1
  8. package/src/sap/ui/rta/appVariant/AppVariantManager.js +1 -1
  9. package/src/sap/ui/rta/command/AddIFrame.js +1 -1
  10. package/src/sap/ui/rta/command/AddProperty.js +1 -1
  11. package/src/sap/ui/rta/command/AddXML.js +1 -1
  12. package/src/sap/ui/rta/command/AddXMLAtExtensionPoint.js +1 -1
  13. package/src/sap/ui/rta/command/AppDescriptorCommand.js +1 -1
  14. package/src/sap/ui/rta/command/BaseCommand.js +1 -1
  15. package/src/sap/ui/rta/command/BindProperty.js +1 -1
  16. package/src/sap/ui/rta/command/Combine.js +1 -1
  17. package/src/sap/ui/rta/command/CommandFactory.js +1 -1
  18. package/src/sap/ui/rta/command/CompositeCommand.js +1 -1
  19. package/src/sap/ui/rta/command/ControlVariantConfigure.js +1 -1
  20. package/src/sap/ui/rta/command/ControlVariantSave.js +1 -1
  21. package/src/sap/ui/rta/command/ControlVariantSaveAs.js +1 -1
  22. package/src/sap/ui/rta/command/ControlVariantSetTitle.js +1 -1
  23. package/src/sap/ui/rta/command/ControlVariantSwitch.js +1 -1
  24. package/src/sap/ui/rta/command/CreateContainer.js +1 -1
  25. package/src/sap/ui/rta/command/CustomAdd.js +1 -1
  26. package/src/sap/ui/rta/command/FlexCommand.js +1 -1
  27. package/src/sap/ui/rta/command/LREPSerializer.js +1 -1
  28. package/src/sap/ui/rta/command/LocalReset.js +1 -1
  29. package/src/sap/ui/rta/command/Move.js +1 -1
  30. package/src/sap/ui/rta/command/Property.js +1 -1
  31. package/src/sap/ui/rta/command/Remove.js +1 -1
  32. package/src/sap/ui/rta/command/Rename.js +1 -1
  33. package/src/sap/ui/rta/command/Reveal.js +1 -1
  34. package/src/sap/ui/rta/command/Settings.js +1 -1
  35. package/src/sap/ui/rta/command/Split.js +1 -1
  36. package/src/sap/ui/rta/command/Stack.js +1 -1
  37. package/src/sap/ui/rta/command/appDescriptor/AddLibrary.js +1 -1
  38. package/src/sap/ui/rta/command/compVariant/CompVariantSaveAs.js +1 -1
  39. package/src/sap/ui/rta/command/compVariant/CompVariantSwitch.js +1 -1
  40. package/src/sap/ui/rta/command/compVariant/CompVariantUpdate.js +1 -1
  41. package/src/sap/ui/rta/enablement/elementActionTest.js +1 -1
  42. package/src/sap/ui/rta/library.js +2 -2
  43. package/src/sap/ui/rta/messagebundle_de.properties +5 -5
  44. package/src/sap/ui/rta/plugin/AddXMLAtExtensionPoint.js +1 -1
  45. package/src/sap/ui/rta/plugin/BaseCreate.js +1 -1
  46. package/src/sap/ui/rta/plugin/Combine.js +1 -1
  47. package/src/sap/ui/rta/plugin/ControlVariant.js +1 -1
  48. package/src/sap/ui/rta/plugin/CreateContainer.js +1 -1
  49. package/src/sap/ui/rta/plugin/CutPaste.js +1 -1
  50. package/src/sap/ui/rta/plugin/DragDrop.js +52 -2
  51. package/src/sap/ui/rta/plugin/EasyAdd.js +1 -1
  52. package/src/sap/ui/rta/plugin/EasyRemove.js +1 -1
  53. package/src/sap/ui/rta/plugin/LocalReset.js +1 -1
  54. package/src/sap/ui/rta/plugin/Plugin.js +1 -1
  55. package/src/sap/ui/rta/plugin/RTAElementMover.js +14 -62
  56. package/src/sap/ui/rta/plugin/Remove.js +1 -1
  57. package/src/sap/ui/rta/plugin/Rename.js +1 -1
  58. package/src/sap/ui/rta/plugin/RenameHandler.js +4 -1
  59. package/src/sap/ui/rta/plugin/Selection.js +1 -1
  60. package/src/sap/ui/rta/plugin/Settings.js +15 -14
  61. package/src/sap/ui/rta/plugin/Split.js +1 -1
  62. package/src/sap/ui/rta/plugin/Stretch.js +133 -138
  63. package/src/sap/ui/rta/plugin/additionalElements/ActionExtractor.js +6 -6
  64. package/src/sap/ui/rta/plugin/additionalElements/AddElementsDialog.js +1 -1
  65. package/src/sap/ui/rta/plugin/additionalElements/AdditionalElementsAnalyzer.js +1 -1
  66. package/src/sap/ui/rta/plugin/additionalElements/AdditionalElementsPlugin.js +3 -3
  67. package/src/sap/ui/rta/plugin/additionalElements/AdditionalElementsUtils.js +1 -1
  68. package/src/sap/ui/rta/plugin/additionalElements/CommandBuilder.js +1 -1
  69. package/src/sap/ui/rta/plugin/iframe/AddIFrame.js +1 -1
  70. package/src/sap/ui/rta/plugin/iframe/AddIFrameDialog.js +1 -1
  71. package/src/sap/ui/rta/service/Action.js +1 -1
  72. package/src/sap/ui/rta/service/ControllerExtension.js +1 -1
  73. package/src/sap/ui/rta/service/Outline.js +109 -62
  74. package/src/sap/ui/rta/service/Property.js +1 -1
  75. package/src/sap/ui/rta/service/Selection.js +1 -1
  76. package/src/sap/ui/rta/toolbar/Adaptation.js +1 -1
  77. package/src/sap/ui/rta/toolbar/Base.js +1 -1
  78. package/src/sap/ui/rta/toolbar/Fiori.js +1 -1
  79. package/src/sap/ui/rta/toolbar/FioriLike.js +1 -1
  80. package/src/sap/ui/rta/toolbar/OverflowToolbarButton.js +1 -1
  81. package/src/sap/ui/rta/toolbar/Personalization.js +1 -1
  82. package/src/sap/ui/rta/toolbar/Standalone.js +1 -1
  83. package/src/sap/ui/rta/toolbar/translation/Translation.js +1 -1
  84. package/src/sap/ui/rta/util/BindingsExtractor.js +13 -7
  85. package/src/sap/ui/rta/util/PluginManager.js +1 -1
  86. package/src/sap/ui/rta/util/PopupManager.js +1 -1
  87. package/src/sap/ui/rta/util/ServiceEventBus.js +1 -1
  88. package/src/sap/ui/rta/util/changeVisualization/ChangeIndicator.js +1 -1
  89. package/src/sap/ui/rta/util/changeVisualization/ChangeIndicatorRegistry.js +1 -1
  90. package/src/sap/ui/rta/util/changeVisualization/ChangeVisualization.js +1 -1
package/.reuse/dep5 CHANGED
@@ -309,7 +309,7 @@ License: MIT
309
309
  Comment: these files belong to: lodash
310
310
 
311
311
  Files: src/sap.ui.core/src/sap/ui/thirdparty/hyphenopoly/*
312
- Copyright: 2018 Mathias Nater
312
+ Copyright: 2021 Mathias Nater
313
313
  License: MIT
314
314
  Comment: these files belong to: Hyphenopoly
315
315
 
@@ -347,11 +347,6 @@ Copyright: 2013 Ariya Hidayat and other contributors
347
347
  License: BSD-2-Clause
348
348
  Comment: these files belong to: Esprima
349
349
 
350
- Files: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/google-code-prettify/*
351
- Copyright: 2006 Google Inc.
352
- License: Apache-2.0
353
- Comment: these files belong to: google-code-prettify
354
-
355
350
  Files: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/highlight.js/*
356
351
  Copyright: 2006-2020, Ivan Sagalaev
357
352
  License: BSD-3-Clause
package/THIRDPARTY.txt CHANGED
@@ -6,7 +6,7 @@ The full text of all referenced licenses is appended at the end of this file.
6
6
 
7
7
  Library: sap.ui.codeeditor:
8
8
 
9
- Component: Ace (Ajax.org Cloud9 Editor), version: 1.4.4
9
+ Component: Ace (Ajax.org Cloud9 Editor), version: 1.4.12
10
10
  Copyright: 2010, Ajax.org B.V.
11
11
  License: BSD-3-Clause
12
12
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
@@ -279,8 +279,8 @@ License: MIT
279
279
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
280
280
  Contained in: src/sap.ui.core/src/sap/ui/base/util/restricted/_/lodash.custom.js
281
281
 
282
- Component: Hyphenopoly, version: 2.4.0
283
- Copyright: 2018 Mathias Nater
282
+ Component: Hyphenopoly, version: 3.4.0
283
+ Copyright: 2021 Mathias Nater
284
284
  License: MIT
285
285
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
286
286
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/hyphenopoly/*
@@ -324,12 +324,6 @@ License: BSD-2-Clause
324
324
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-2-Clause.txt
325
325
  Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/esprima.js
326
326
 
327
- Component: google-code-prettify, version: 20130304
328
- Copyright: 2006 Google Inc.
329
- License: Apache-2.0
330
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
331
- Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/google-code-prettify/*
332
-
333
327
  Component: highlight.js, version: 10.4.1
334
328
  Copyright: 2006-2020, Ivan Sagalaev
335
329
  License: BSD-3-Clause
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.rta",
3
- "version": "1.94.0",
3
+ "version": "1.95.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.rta",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,10 +14,10 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.m": "1.94.0",
18
- "@openui5/sap.ui.core": "1.94.0",
19
- "@openui5/sap.ui.dt": "1.94.0",
20
- "@openui5/sap.ui.fl": "1.94.0",
21
- "@openui5/sap.ui.layout": "1.94.0"
17
+ "@openui5/sap.m": "1.95.0",
18
+ "@openui5/sap.ui.core": "1.95.0",
19
+ "@openui5/sap.ui.dt": "1.95.0",
20
+ "@openui5/sap.ui.fl": "1.95.0",
21
+ "@openui5/sap.ui.layout": "1.95.0"
22
22
  }
23
23
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.94.0</version>
9
+ <version>1.95.0</version>
10
10
 
11
11
  <documentation>SAPUI5 library with RTA controls.</documentation>
12
12
 
@@ -57,7 +57,7 @@ sap.ui.define([
57
57
  * @alias sap.ui.rta.Client
58
58
  * @author SAP SE
59
59
  * @since 1.56.0
60
- * @version 1.94.0
60
+ * @version 1.95.0
61
61
  * @private
62
62
  * @ui5-restricted
63
63
  */
@@ -107,7 +107,7 @@ function(
107
107
  * @class The runtime authoring allows to adapt the fields of a running application.
108
108
  * @extends sap.ui.base.ManagedObject
109
109
  * @author SAP SE
110
- * @version 1.94.0
110
+ * @version 1.95.0
111
111
  * @constructor
112
112
  * @private
113
113
  * @since 1.30
@@ -12,6 +12,9 @@ sap.ui.define([
12
12
  "sap/ui/fl/LayerUtils",
13
13
  "sap/ui/dt/OverlayUtil",
14
14
  "sap/ui/dt/DOMUtil",
15
+ "sap/ui/dt/ElementUtil",
16
+ "sap/ui/dt/MetadataPropagationUtil",
17
+ "sap/ui/rta/util/hasStableId",
15
18
  "sap/m/MessageBox",
16
19
  "sap/ui/rta/util/BindingsExtractor",
17
20
  "sap/base/util/restricted/_omit",
@@ -26,6 +29,9 @@ function(
26
29
  FlexLayerUtils,
27
30
  OverlayUtil,
28
31
  DOMUtil,
32
+ ElementUtil,
33
+ MetadataPropagationUtil,
34
+ hasStableId,
29
35
  MessageBox,
30
36
  BindingsExtractor,
31
37
  _omit,
@@ -40,7 +46,7 @@ function(
40
46
  * @class Utility functionality to work with controls, e.g. iterate through aggregations, find parents, etc.
41
47
  *
42
48
  * @author SAP SE
43
- * @version 1.94.0
49
+ * @version 1.95.0
44
50
  *
45
51
  * @private
46
52
  * @static
@@ -553,5 +559,71 @@ function(
553
559
  }, {});
554
560
  };
555
561
 
562
+ /**
563
+ * Checks drop ability for aggregation overlays
564
+ * @param {sap.ui.dt.Overlay} oAggregationOverlay Aggregation overlay object
565
+ * @param {sap.ui.dt.ElementOverlay} oMovedOverlay Overlay being moved/added
566
+ * @param {sap.ui.rta.Plugin} oPlugin RTA plugin calling this method
567
+ * @param {boolean} [bOverlayNotInDom] Flag defining if overlay is not in DOM
568
+ * @return {Promise.<boolean>} Promise with true value if overlay can be added to the aggregation overlay or false value if not.
569
+ * @override
570
+ */
571
+ Utils.checkTargetZone = function(oAggregationOverlay, oMovedOverlay, oPlugin, bOverlayNotInDom) {
572
+ function fnHasMoveAction(oAggregationOverlay, oElement, oRelevantContainer, oPlugin) {
573
+ var oAggregationDTMetadata = oAggregationOverlay.getDesignTimeMetadata();
574
+ var oMoveAction = oAggregationDTMetadata.getAction("move", oElement);
575
+ if (!oMoveAction) {
576
+ return Promise.resolve(false);
577
+ }
578
+ // moveChangeHandler information is always located on the relevant container
579
+ return oPlugin.hasChangeHandler(oMoveAction.changeType, oRelevantContainer);
580
+ }
581
+
582
+ return ElementUtil.checkTargetZone(oAggregationOverlay, oMovedOverlay, bOverlayNotInDom)
583
+ .then(function(bTargetZone) {
584
+ if (!bTargetZone) {
585
+ return false;
586
+ }
587
+
588
+ var oMovedElement = oMovedOverlay.getElement();
589
+ var oTargetOverlay = oAggregationOverlay.getParent();
590
+ var oMovedRelevantContainer = oMovedOverlay.getRelevantContainer();
591
+
592
+ // the element or the parent overlay might be destroyed or not available
593
+ if (!oMovedElement || !oTargetOverlay) {
594
+ return false;
595
+ }
596
+
597
+ var oTargetElement = oTargetOverlay.getElement();
598
+ var oAggregationDtMetadata = oAggregationOverlay.getDesignTimeMetadata();
599
+
600
+ // determine target relevantContainer
601
+ var vTargetRelevantContainerAfterMove = MetadataPropagationUtil.getRelevantContainerForPropagation(oAggregationDtMetadata.getData(), oMovedElement);
602
+ vTargetRelevantContainerAfterMove = vTargetRelevantContainerAfterMove || oTargetElement;
603
+
604
+ // check for same relevantContainer
605
+ if (
606
+ !oMovedRelevantContainer
607
+ || !vTargetRelevantContainerAfterMove
608
+ || !hasStableId(oTargetOverlay)
609
+ || oMovedRelevantContainer !== vTargetRelevantContainerAfterMove
610
+ ) {
611
+ return false;
612
+ }
613
+
614
+ // check if binding context is the same
615
+ if (
616
+ // binding context is not relevant if the element is being moved inside its parent
617
+ oMovedOverlay.getParent().getElement() !== oTargetElement
618
+ && !Utils.checkSourceTargetBindingCompatibility(oMovedElement, oTargetElement)
619
+ ) {
620
+ return false;
621
+ }
622
+
623
+ // check if movedOverlay is movable into the target aggregation
624
+ return fnHasMoveAction(oAggregationOverlay, oMovedElement, vTargetRelevantContainerAfterMove, oPlugin);
625
+ });
626
+ };
627
+
556
628
  return Utils;
557
629
  }, /* bExport= */true);
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @class
25
25
  * @extends sap.ui.base.ManagedObject
26
26
  * @author SAP SE
27
- * @version 1.94.0
27
+ * @version 1.95.0
28
28
  * @constructor
29
29
  * @private
30
30
  * @since 1.53
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class
17
17
  * @extends sap.ui.rta.command.FlexCommand
18
18
  * @author SAP SE
19
- * @version 1.94.0
19
+ * @version 1.95.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.75
@@ -14,7 +14,7 @@ sap.ui.define([
14
14
  * @class
15
15
  * @extends sap.ui.rta.command.FlexCommand
16
16
  * @author SAP SE
17
- * @version 1.94.0
17
+ * @version 1.95.0
18
18
  * @constructor
19
19
  * @private
20
20
  * @since 1.78
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class
17
17
  * @extends sap.ui.rta.command.FlexCommand
18
18
  * @author SAP SE
19
- * @version 1.94.0
19
+ * @version 1.95.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.54
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @class
25
25
  * @extends sap.ui.rta.command.FlexCommand
26
26
  * @author SAP SE
27
- * @version 1.94.0
27
+ * @version 1.95.0
28
28
  * @constructor
29
29
  * @private
30
30
  * @since 1.76
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @extends sap.ui.rta.command.BaseCommand
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.94.0
24
+ * @version 1.95.0
25
25
  *
26
26
  * @constructor
27
27
  * @private
@@ -13,7 +13,7 @@ sap.ui.define(["sap/ui/base/ManagedObject"], function(ManagedObject) {
13
13
  * @extends sap.ui.base.ManagedObject
14
14
  *
15
15
  * @author SAP SE
16
- * @version 1.94.0
16
+ * @version 1.95.0
17
17
  *
18
18
  * @constructor
19
19
  * @private
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @class
27
27
  * @extends sap.ui.rta.command.FlexCommand
28
28
  * @author SAP SE
29
- * @version 1.94.0
29
+ * @version 1.95.0
30
30
  * @constructor
31
31
  * @private
32
32
  * @since 1.38
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class
17
17
  * @extends sap.ui.rta.command.FlexCommand
18
18
  * @author SAP SE
19
- * @version 1.94.0
19
+ * @version 1.95.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.46
@@ -475,7 +475,7 @@ sap.ui.define([
475
475
  * @extends sap.ui.base.ManagedObject
476
476
  *
477
477
  * @author SAP SE
478
- * @version 1.94.0
478
+ * @version 1.95.0
479
479
  *
480
480
  * @constructor
481
481
  * @private
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * @extends sap.ui.rta.command.BaseCommand
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.94.0
22
+ * @version 1.95.0
23
23
  *
24
24
  * @constructor
25
25
  * @private
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @class
21
21
  * @extends sap.ui.rta.command.BaseCommand
22
22
  * @author SAP SE
23
- * @version 1.94.0
23
+ * @version 1.95.0
24
24
  * @constructor
25
25
  * @private
26
26
  * @since 1.52
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @class
21
21
  * @extends sap.ui.rta.command.BaseCommand
22
22
  * @author SAP SE
23
- * @version 1.94.0
23
+ * @version 1.95.0
24
24
  * @constructor
25
25
  * @private
26
26
  * @since 1.86
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @class
23
23
  * @extends sap.ui.rta.command.BaseCommand
24
24
  * @author SAP SE
25
- * @version 1.94.0
25
+ * @version 1.95.0
26
26
  * @constructor
27
27
  * @private
28
28
  * @since 1.86
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class
17
17
  * @extends sap.ui.rta.command.BaseCommand
18
18
  * @author SAP SE
19
- * @version 1.94.0
19
+ * @version 1.95.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.50
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @class
21
21
  * @extends sap.ui.rta.command.BaseCommand
22
22
  * @author SAP SE
23
- * @version 1.94.0
23
+ * @version 1.95.0
24
24
  * @constructor
25
25
  * @private
26
26
  * @since 1.50
@@ -12,7 +12,7 @@ sap.ui.define(["sap/ui/rta/command/FlexCommand"], function(FlexCommand) {
12
12
  * @class
13
13
  * @extends sap.ui.rta.command.FlexCommand
14
14
  * @author SAP SE
15
- * @version 1.94.0
15
+ * @version 1.95.0
16
16
  * @constructor
17
17
  * @private
18
18
  * @since 1.34
@@ -12,7 +12,7 @@ sap.ui.define(["sap/ui/rta/command/FlexCommand"], function(FlexCommand) {
12
12
  * @class
13
13
  * @extends sap.ui.rta.command.FlexCommand
14
14
  * @author SAP SE
15
- * @version 1.94.0
15
+ * @version 1.95.0
16
16
  * @constructor
17
17
  * @private
18
18
  * @since 1.62
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @extends sap.ui.rta.command.BaseCommand
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.94.0
32
+ * @version 1.95.0
33
33
  *
34
34
  * @constructor
35
35
  * @private
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @class
30
30
  * @extends sap.ui.base.ManagedObject
31
31
  * @author SAP SE
32
- * @version 1.94.0
32
+ * @version 1.95.0
33
33
  * @constructor
34
34
  * @private
35
35
  * @since 1.42
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @class
21
21
  * @extends sap.ui.rta.command.BaseCommand
22
22
  * @author SAP SE
23
- * @version 1.94.0
23
+ * @version 1.95.0
24
24
  * @constructor
25
25
  * @private
26
26
  * @since 1.90
@@ -17,7 +17,7 @@ function(
17
17
  * @class
18
18
  * @extends sap.ui.rta.command.FlexCommand
19
19
  * @author SAP SE
20
- * @version 1.94.0
20
+ * @version 1.95.0
21
21
  * @constructor
22
22
  * @private
23
23
  * @since 1.34
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class
17
17
  * @extends sap.ui.rta.command.FlexCommand
18
18
  * @author SAP SE
19
- * @version 1.94.0
19
+ * @version 1.95.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.34
@@ -12,7 +12,7 @@ sap.ui.define(["sap/ui/rta/command/FlexCommand"], function(FlexCommand) {
12
12
  * @class
13
13
  * @extends sap.ui.rta.command.FlexCommand
14
14
  * @author SAP SE
15
- * @version 1.94.0
15
+ * @version 1.95.0
16
16
  * @constructor
17
17
  * @private
18
18
  * @since 1.42
@@ -12,7 +12,7 @@ sap.ui.define(["sap/ui/rta/command/FlexCommand"], function(FlexCommand) {
12
12
  * @class
13
13
  * @extends sap.ui.rta.command.FlexCommand
14
14
  * @author SAP SE
15
- * @version 1.94.0
15
+ * @version 1.95.0
16
16
  * @constructor
17
17
  * @private
18
18
  * @since 1.34
@@ -12,7 +12,7 @@ sap.ui.define(["sap/ui/rta/command/FlexCommand"], function(FlexCommand) {
12
12
  * @class
13
13
  * @extends sap.ui.rta.command.FlexCommand
14
14
  * @author SAP SE
15
- * @version 1.94.0
15
+ * @version 1.95.0
16
16
  * @constructor
17
17
  * @private
18
18
  * @since 1.44
@@ -12,7 +12,7 @@ sap.ui.define(["sap/ui/rta/command/FlexCommand"], function(FlexCommand) {
12
12
  * @class
13
13
  * @extends sap.ui.rta.command.FlexCommand
14
14
  * @author SAP SE
15
- * @version 1.94.0
15
+ * @version 1.95.0
16
16
  * @constructor
17
17
  * @private
18
18
  * @since 1.44
@@ -14,7 +14,7 @@ sap.ui.define([
14
14
  * @class
15
15
  * @extends sap.ui.rta.command.FlexCommand
16
16
  * @author SAP SE
17
- * @version 1.94.0
17
+ * @version 1.95.0
18
18
  * @constructor
19
19
  * @private
20
20
  * @since 1.46
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * @class
60
60
  * @extends sap.ui.base.ManagedObject
61
61
  * @author SAP SE
62
- * @version 1.94.0
62
+ * @version 1.95.0
63
63
  * @constructor
64
64
  * @private
65
65
  * @since 1.34
@@ -17,7 +17,7 @@ sap.ui.define([
17
17
  * @extends sap.ui.rta.command.AppDescriptorCommand
18
18
  *
19
19
  * @author SAP SE
20
- * @version 1.94.0
20
+ * @version 1.95.0
21
21
  *
22
22
  * @constructor
23
23
  * @private
@@ -18,7 +18,7 @@ sap.ui.define([
18
18
  * @class
19
19
  * @extends sap.ui.rta.command.BaseCommand
20
20
  * @author SAP SE
21
- * @version 1.94.0
21
+ * @version 1.95.0
22
22
  * @constructor
23
23
  * @private
24
24
  * @since 1.87
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class
17
17
  * @extends sap.ui.rta.command.BaseCommand
18
18
  * @author SAP SE
19
- * @version 1.94.0
19
+ * @version 1.95.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.87
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @class
21
21
  * @extends sap.ui.rta.command.BaseCommand
22
22
  * @author SAP SE
23
- * @version 1.94.0
23
+ * @version 1.95.0
24
24
  * @constructor
25
25
  * @private
26
26
  * @since 1.87
@@ -51,7 +51,7 @@ sap.ui.define([
51
51
  * E.g. <code>controlEnablingCheck.only("Remove");</code>
52
52
  *
53
53
  * @author SAP SE
54
- * @version 1.94.0
54
+ * @version 1.95.0
55
55
  *
56
56
  * @static
57
57
  * @since 1.42
@@ -23,7 +23,7 @@ function() {
23
23
  * @namespace
24
24
  * @name sap.ui.rta
25
25
  * @author SAP SE
26
- * @version 1.94.0
26
+ * @version 1.95.0
27
27
  * @since 1.50
28
28
  * @private
29
29
  * @experimental This class is experimental and provides only limited functionality. Also the API might be changed in future.
@@ -33,7 +33,7 @@ function() {
33
33
  // delegate further initialization of this library to the Core
34
34
  sap.ui.getCore().initLibrary({
35
35
  name: "sap.ui.rta",
36
- version: "1.94.0",
36
+ version: "1.95.0",
37
37
  dependencies: ["sap.ui.core", "sap.m", "sap.ui.fl", "sap.ui.dt"],
38
38
  types: [],
39
39
  interfaces: [],
@@ -10,8 +10,8 @@ CTX_ADD_ELEMENTS_WITH_SUBMENU=Hinzuf\u00FCgen zu...
10
10
  MULTIPLE_CONTROL_NAME=Inhalt
11
11
  CTX_CUT=Ausschneiden
12
12
  CTX_PASTE=Einf\u00FCgen
13
- CTX_GROUP_FIELDS=Kombinieren
14
- CTX_UNGROUP_FIELDS=Teilen
13
+ CTX_GROUP_FIELDS=Zusammenf\u00FCgen
14
+ CTX_UNGROUP_FIELDS=Aufteilen
15
15
  CTX_CREATE_CONTAINER=Anlegen\: {0}
16
16
  TITLE_CREATE_CONTAINER=Neu\: {0}
17
17
  CTX_RENAME=Umbenennen
@@ -188,7 +188,7 @@ TXT_CHANGEVISUALIZATION_CHANGE_RENAME_FROM_TO=Name ge\u00E4ndert von ''{1}'' in
188
188
  TXT_CHANGEVISUALIZATION_CHANGE_MOVE=Element {0} wurde an eine andere Position verschoben
189
189
  TXT_CHANGEVISUALIZATION_CHANGE_REMOVE=Element {0} wurde entfernt
190
190
  TXT_CHANGEVISUALIZATION_CHANGE_REVEAL=Element {0} wurde eingeblendet
191
- TXT_CHANGEVISUALIZATION_CHANGE_COMBINE=Element {0} wurde zusammengesetzt
191
+ TXT_CHANGEVISUALIZATION_CHANGE_COMBINE=Element {0} wurde zusammengef\u00FCgt
192
192
  TXT_CHANGEVISUALIZATION_CHANGE_SPLIT=Element {0} wurde aufgeteilt
193
193
  TXT_CHANGEVISUALIZATION_CHANGE_CREATECONTAINER=Gruppe {0} wurde hinzugef\u00FCgt
194
194
  TXT_CHANGEVISUALIZATION_CHANGE_ADDDELEGATEPROPERTY=Feld {0} wurde hinzugef\u00FCgt
@@ -211,8 +211,8 @@ TXT_CHANGEVISUALIZATION_OVERVIEW_RENAME=Umbenannte Elemente einblenden
211
211
  BTN_CHANGEVISUALIZATION_OVERVIEW_RENAME=Umbenannte Elemente
212
212
  TXT_CHANGEVISUALIZATION_OVERVIEW_ADD=Hinzugef\u00FCgte Elemente einblenden
213
213
  BTN_CHANGEVISUALIZATION_OVERVIEW_ADD=Hinzugef\u00FCgte Elemente
214
- TXT_CHANGEVISUALIZATION_OVERVIEW_COMBINESPLIT=Zusammengesetzte & aufgeteilte Elemente einblenden
215
- BTN_CHANGEVISUALIZATION_OVERVIEW_COMBINESPLIT=Zusammengesetzte und aufgeteilte Elemente
214
+ TXT_CHANGEVISUALIZATION_OVERVIEW_COMBINESPLIT=Zusammengef\u00FCgte & aufgeteilte Elemente einblenden
215
+ BTN_CHANGEVISUALIZATION_OVERVIEW_COMBINESPLIT=Zusammengef\u00FCgte und aufgeteilte Elemente
216
216
  TXT_CHANGEVISUALIZATION_OVERVIEW_REMOVE=Entfernte Elemente einblenden
217
217
  BTN_CHANGEVISUALIZATION_OVERVIEW_REMOVE=Entfernte Elemente
218
218
  MSG_LOCAL_RESET_VARIANT_SAVE=Der Container wurde zur\u00FCckgesetzt und die Ansicht wurde automatisch gesichert.
@@ -45,7 +45,7 @@ sap.ui.define([
45
45
  * @class
46
46
  * @extends sap.ui.rta.plugin.Plugin
47
47
  * @author SAP SE
48
- * @version 1.94.0
48
+ * @version 1.95.0
49
49
  * @constructor
50
50
  * @private
51
51
  * @since 1.78
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @class The BaseCreate allows trigger BaseCreate operations on the overlay.
24
24
  * @extends sap.ui.rta.plugin.Plugin
25
25
  * @author SAP SE
26
- * @version 1.94.0
26
+ * @version 1.95.0
27
27
  * @constructor
28
28
  * @private
29
29
  * @since 1.75
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @class
22
22
  * @extends sap.ui.rta.plugin.Plugin
23
23
  * @author SAP SE
24
- * @version 1.94.0
24
+ * @version 1.95.0
25
25
  * @constructor
26
26
  * @private
27
27
  * @since 1.46
@@ -41,7 +41,7 @@ sap.ui.define([
41
41
  * @class The ControlVariant allows propagation of variantManagement key
42
42
  * @extends sap.ui.rta.plugin.Plugin
43
43
  * @author SAP SE
44
- * @version 1.94.0
44
+ * @version 1.95.0
45
45
  * @constructor
46
46
  * @private
47
47
  * @since 1.50
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @class The CreateContainer allows trigger CreateContainer operations on the overlay
28
28
  * @extends sap.ui.rta.plugin.BaseCreate
29
29
  * @author SAP SE
30
- * @version 1.94.0
30
+ * @version 1.95.0
31
31
  * @constructor
32
32
  * @private
33
33
  * @since 1.34