@openui5/sap.ui.layout 1.101.0 → 1.103.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 (66) hide show
  1. package/THIRDPARTY.txt +1 -1
  2. package/package.json +2 -2
  3. package/src/sap/ui/layout/.library +1 -1
  4. package/src/sap/ui/layout/AlignedFlowLayout.js +1 -1
  5. package/src/sap/ui/layout/AssociativeSplitter.js +1 -1
  6. package/src/sap/ui/layout/BlockLayout.js +4 -3
  7. package/src/sap/ui/layout/BlockLayoutCell.js +1 -3
  8. package/src/sap/ui/layout/BlockLayoutCellData.js +1 -1
  9. package/src/sap/ui/layout/BlockLayoutRow.js +1 -1
  10. package/src/sap/ui/layout/DynamicSideContent.js +1 -1
  11. package/src/sap/ui/layout/FixFlex.js +1 -1
  12. package/src/sap/ui/layout/Grid.js +3 -3
  13. package/src/sap/ui/layout/GridData.js +1 -1
  14. package/src/sap/ui/layout/GridRenderer.js +1 -1
  15. package/src/sap/ui/layout/HorizontalLayout.js +1 -1
  16. package/src/sap/ui/layout/PaneContainer.js +2 -2
  17. package/src/sap/ui/layout/ResponsiveFlowLayout.js +18 -20
  18. package/src/sap/ui/layout/ResponsiveFlowLayoutData.js +1 -1
  19. package/src/sap/ui/layout/ResponsiveSplitter.js +1 -1
  20. package/src/sap/ui/layout/ResponsiveSplitterPage.js +1 -1
  21. package/src/sap/ui/layout/ResponsiveSplitterUtilities.js +1 -1
  22. package/src/sap/ui/layout/SplitPane.js +1 -1
  23. package/src/sap/ui/layout/Splitter.js +1 -1
  24. package/src/sap/ui/layout/SplitterLayoutData.js +1 -1
  25. package/src/sap/ui/layout/VerticalLayout.js +1 -1
  26. package/src/sap/ui/layout/changeHandler/AddFormContainer.js +1 -1
  27. package/src/sap/ui/layout/changeHandler/AddFormField.js +1 -1
  28. package/src/sap/ui/layout/changeHandler/AddSimpleFormField.js +1 -1
  29. package/src/sap/ui/layout/changeHandler/AddSimpleFormGroup.js +1 -1
  30. package/src/sap/ui/layout/changeHandler/HideSimpleForm.js +1 -1
  31. package/src/sap/ui/layout/changeHandler/MoveSimpleForm.js +19 -2
  32. package/src/sap/ui/layout/changeHandler/RenameFormContainer.js +1 -1
  33. package/src/sap/ui/layout/changeHandler/RenameSimpleForm.js +1 -1
  34. package/src/sap/ui/layout/changeHandler/UnhideSimpleForm.js +1 -1
  35. package/src/sap/ui/layout/cssgrid/CSSGrid.js +2 -1
  36. package/src/sap/ui/layout/cssgrid/GridBasicLayout.js +1 -1
  37. package/src/sap/ui/layout/cssgrid/GridBoxLayout.js +1 -1
  38. package/src/sap/ui/layout/cssgrid/GridItemLayoutData.js +1 -1
  39. package/src/sap/ui/layout/cssgrid/GridLayoutBase.js +4 -3
  40. package/src/sap/ui/layout/cssgrid/GridLayoutDelegate.js +1 -1
  41. package/src/sap/ui/layout/cssgrid/GridResponsiveLayout.js +1 -1
  42. package/src/sap/ui/layout/cssgrid/GridSettings.js +1 -1
  43. package/src/sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData.js +1 -1
  44. package/src/sap/ui/layout/cssgrid/ResponsiveColumnLayout.js +1 -1
  45. package/src/sap/ui/layout/designtime/form/FormContainer.designtime.js +1 -1
  46. package/src/sap/ui/layout/form/ColumnContainerData.js +1 -1
  47. package/src/sap/ui/layout/form/ColumnElementData.js +1 -1
  48. package/src/sap/ui/layout/form/ColumnLayout.js +1 -1
  49. package/src/sap/ui/layout/form/Form.js +3 -3
  50. package/src/sap/ui/layout/form/FormContainer.js +3 -3
  51. package/src/sap/ui/layout/form/FormElement.js +2 -2
  52. package/src/sap/ui/layout/form/FormLayout.js +2 -2
  53. package/src/sap/ui/layout/form/GridContainerData.js +1 -1
  54. package/src/sap/ui/layout/form/GridElementData.js +1 -1
  55. package/src/sap/ui/layout/form/GridLayout.js +2 -2
  56. package/src/sap/ui/layout/form/ResponsiveGridLayout.js +3 -3
  57. package/src/sap/ui/layout/form/ResponsiveLayout.js +3 -3
  58. package/src/sap/ui/layout/form/SemanticFormElement.js +1 -1
  59. package/src/sap/ui/layout/form/SimpleForm.js +1 -1
  60. package/src/sap/ui/layout/library.js +4 -4
  61. package/src/sap/ui/layout/rules/Form.support.js +32 -32
  62. package/src/sap/ui/layout/themes/base/BlockLayout.less +62 -17
  63. package/src/sap/ui/layout/themes/base/BlockLayoutCell.less +0 -2
  64. package/src/sap/ui/layout/themes/base/BlockLayoutRow.less +2 -5
  65. package/src/sap/ui/layout/themes/base/ResponsiveSplitter.less +7 -3
  66. package/src/sap/ui/layout/themes/base/Splitter.less +3 -2
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @extends sap.ui.core.LayoutData
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.101.0
29
+ * @version 1.103.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -60,7 +60,7 @@ sap.ui.define([
60
60
  * This control cannot be used stand-alone, it just renders a <code>Form</code> control,
61
61
  * so it must be assigned to a <code>Form</code> control using the <code>layout</code> aggregation.
62
62
  * @extends sap.ui.layout.form.FormLayout
63
- * @version 1.101.0
63
+ * @version 1.103.0
64
64
  *
65
65
  * @constructor
66
66
  * @public
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * @extends sap.ui.core.Control
45
45
  *
46
46
  * @author SAP SE
47
- * @version 1.101.0
47
+ * @version 1.103.0
48
48
  *
49
49
  * @constructor
50
50
  * @public
@@ -246,7 +246,7 @@ sap.ui.define([
246
246
  * If the <code>FormContainer</code> has a DOM representation this function returns it,
247
247
  * independent from the ID of this DOM element
248
248
  * @param {sap.ui.layout.form.FormContainer} oContainer <code>FormContainer</code>
249
- * @return {Element} The Element's DOM representation or null
249
+ * @return {Element|null} The Element's DOM representation or null
250
250
  * @private
251
251
  */
252
252
  Form.prototype.getContainerRenderedDomRef = function(oContainer) {
@@ -265,7 +265,7 @@ sap.ui.define([
265
265
  * If the <code>FormElement</code> has a DOM representation this function returns it,
266
266
  * independent from the ID of this DOM element
267
267
  * @param {sap.ui.layout.form.FormElement} oElement <code>FormElement</code>
268
- * @return {Element} The Element's DOM representation or null
268
+ * @return {Element|null} The Element's DOM representation or null
269
269
  * @private
270
270
  */
271
271
  Form.prototype.getElementRenderedDomRef = function(oElement) {
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Element
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.101.0
31
+ * @version 1.103.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -241,7 +241,7 @@ sap.ui.define([
241
241
  * As Elements must not have a DOM reference it is not sure if one exists
242
242
  * If the FormContainer has a DOM representation this function returns it,
243
243
  * independent from the ID of this DOM element
244
- * @return {Element} The Element's DOM representation or null
244
+ * @return {Element|null} The Element's DOM representation or null
245
245
  * @private
246
246
  */
247
247
  FormContainer.prototype.getRenderedDomRef = function(){
@@ -262,7 +262,7 @@ sap.ui.define([
262
262
  * If the FormElement has a DOM representation this function returns it,
263
263
  * independent from the ID of this DOM element
264
264
  * @param {sap.ui.layout.form.FormElement} oElement FormElement
265
- * @return {Element} The Element's DOM representation or null
265
+ * @return {Element|null} The Element's DOM representation or null
266
266
  * @private
267
267
  */
268
268
  FormContainer.prototype.getElementRenderedDomRef = function(oElement){
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @extends sap.ui.core.Element
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.101.0
29
+ * @version 1.103.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -290,7 +290,7 @@ sap.ui.define([
290
290
  * As Elements must not have a DOM reference it is not sure if one exists
291
291
  * If the FormElement has a DOM representation this function returns it,
292
292
  * independent from the ID of this DOM element
293
- * @return {Element} The Element's DOM representation or null
293
+ * @return {Element|null} The Element's DOM representation or null
294
294
  * @private
295
295
  */
296
296
  FormElement.prototype.getRenderedDomRef = function(){
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @extends sap.ui.core.Control
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.101.0
39
+ * @version 1.103.0
40
40
  *
41
41
  * @constructor
42
42
  * @public
@@ -895,7 +895,7 @@ sap.ui.define([
895
895
  * As Elements must not have a DOM reference it is not sure if one exists
896
896
  * In this basic <code>FormLayout</code> each <code>FormContainer</code> has its own DOM.
897
897
  * @param {sap.ui.layout.form.FormContainer} oContainer <code>FormContainer</code>
898
- * @return {Element} The Element's DOM representation or null
898
+ * @return {Element|null} The Element's DOM representation or null
899
899
  * @private
900
900
  */
901
901
  FormLayout.prototype.getContainerRenderedDomRef = function(oContainer) {
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.core.LayoutData
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.101.0
25
+ * @version 1.103.0
26
26
  *
27
27
  * @constructor
28
28
  * @public
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.core.LayoutData
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.101.0
25
+ * @version 1.103.0
26
26
  *
27
27
  * @constructor
28
28
  * @public
@@ -28,7 +28,7 @@ sap.ui.define(['sap/ui/layout/library', './FormLayout', './GridLayoutRenderer'],
28
28
  * @extends sap.ui.layout.form.FormLayout
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.101.0
31
+ * @version 1.103.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -202,7 +202,7 @@ sap.ui.define(['sap/ui/layout/library', './FormLayout', './GridLayoutRenderer'],
202
202
  * In <code>GridLayout</code> a <code>FormContainer</code> can't have a surrounding DOM element,
203
203
  * so it always returns null
204
204
  * @param {sap.ui.layout.form.FormContainer} oContainer <code>FormContainer</code>
205
- * @return {Element} The Element's DOM representation or null
205
+ * @return {Element|null} The Element's DOM representation or null
206
206
  * @private
207
207
  */
208
208
  GridLayout.prototype.getContainerRenderedDomRef = function(oContainer) {
@@ -53,7 +53,7 @@ sap.ui.define([
53
53
  *
54
54
  * This control cannot be used stand-alone, it just renders a <code>Form</code>, so it must be assigned to a <code>Form</code> using the <code>layout</code> aggregation.
55
55
  * @extends sap.ui.layout.form.FormLayout
56
- * @version 1.101.0
56
+ * @version 1.103.0
57
57
  *
58
58
  * @constructor
59
59
  * @public
@@ -415,7 +415,7 @@ sap.ui.define([
415
415
  * In this case, the panel's DOM reference is returned, otherwise the DOM reference
416
416
  * of the <code>Grid</code> rendering the container's content.
417
417
  * @param {sap.ui.layout.form.FormContainer} oContainer <code>FormContainer</code>
418
- * @return {Element} The Element's DOM representation or null
418
+ * @return {Element|null} The Element's DOM representation or null
419
419
  * @private
420
420
  */
421
421
  ResponsiveGridLayout.prototype.getContainerRenderedDomRef = function(oContainer) {
@@ -443,7 +443,7 @@ sap.ui.define([
443
443
  * In this Layout a <code>FormElement</code> has no DOM representation,
444
444
  * so null will always be returned
445
445
  * @param {sap.ui.layout.form.FormElement} oElement <code>FormElement</code>
446
- * @return {Element} The Element's DOM representation or null
446
+ * @return {Element|null} The Element's DOM representation or null
447
447
  * @private
448
448
  */
449
449
  ResponsiveGridLayout.prototype.getElementRenderedDomRef = function(oElement) {
@@ -50,7 +50,7 @@ sap.ui.define([
50
50
  * @extends sap.ui.layout.form.FormLayout
51
51
  *
52
52
  * @author SAP SE
53
- * @version 1.101.0
53
+ * @version 1.103.0
54
54
  *
55
55
  * @constructor
56
56
  * @public
@@ -312,7 +312,7 @@ sap.ui.define([
312
312
  * In this case, the panel's DOM reference is returned, otherwise the DOM reference
313
313
  * of the <code>ResponsiveFlowLayout</code> rendering the container's content.
314
314
  * @param {sap.ui.layout.form.FormContainer} oContainer <code>FormContainer</code>
315
- * @return {Element} The Element's DOM representation or null
315
+ * @return {Element|null} The Element's DOM representation or null
316
316
  * @private
317
317
  */
318
318
  ResponsiveLayout.prototype.getContainerRenderedDomRef = function(oContainer) {
@@ -340,7 +340,7 @@ sap.ui.define([
340
340
  * In this Layout each <code>FormElement</code> is represented by an own ResponsiveFlowLayout.
341
341
  * So the DOM of this <code>ResponsiveFlowLayout</code> is returned
342
342
  * @param {sap.ui.layout.form.FormElement} oElement <code>FormElement</code>
343
- * @return {Element} The Element's DOM representation or null
343
+ * @return {Element|null} The Element's DOM representation or null
344
344
  * @private
345
345
  */
346
346
  ResponsiveLayout.prototype.getElementRenderedDomRef = function(oElement) {
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.ui.layout.form.FormElement
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.101.0
33
+ * @version 1.103.0
34
34
  *
35
35
  * @constructor
36
36
  * @public
@@ -67,7 +67,7 @@ sap.ui.define([
67
67
  * <b>Note:</b> If a more complex form is needed, use the <code>{@link sap.ui.layout.form.Form Form}</code> control instead.
68
68
  *
69
69
  * @extends sap.ui.core.Control
70
- * @version 1.101.0
70
+ * @version 1.103.0
71
71
  *
72
72
  * @constructor
73
73
  * @public
@@ -20,13 +20,13 @@ sap.ui.define([
20
20
  * @namespace
21
21
  * @alias sap.ui.layout
22
22
  * @author SAP SE
23
- * @version 1.101.0
23
+ * @version 1.103.0
24
24
  * @since 1.15
25
25
  * @public
26
26
  */
27
27
  var thisLib = sap.ui.getCore().initLibrary({
28
28
  name : "sap.ui.layout",
29
- version: "1.101.0",
29
+ version: "1.103.0",
30
30
  dependencies: ["sap.ui.core"],
31
31
  designtime: "sap/ui/layout/designtime/library.designtime",
32
32
  types: [
@@ -494,13 +494,13 @@ sap.ui.define([
494
494
  */
495
495
  ShadeD: "ShadeD",
496
496
  /**
497
- * Shade E - available only for Fiori 3 theme
497
+ * Shade E - available only for SAP Quartz and Horizon themes
498
498
  *
499
499
  * @public
500
500
  */
501
501
  ShadeE: "ShadeE",
502
502
  /**
503
- * Shade F - available only for Fiori 3 theme
503
+ * Shade F - available only for SAP Quartz and Horizon themes
504
504
  *
505
505
  * @public
506
506
  */
@@ -50,19 +50,19 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
50
50
  resolution: "Use the ResponsiveGridLayout or ColumnLayout instead",
51
51
  resolutionurls: [{
52
52
  text: "API Reference: Form",
53
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
53
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
54
54
  },
55
55
  {
56
56
  text: "API Reference: SimpleForm",
57
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
57
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
58
58
  },
59
59
  {
60
60
  text: "API Reference: ResponsiveGridLayout",
61
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.ResponsiveGridLayout"
61
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.ResponsiveGridLayout"
62
62
  },
63
63
  {
64
64
  text: "API Reference: ColumnLayout",
65
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.ColumnLayout"
65
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.ColumnLayout"
66
66
  }],
67
67
  check: function (oIssueManager, oCoreFacade, oScope) {
68
68
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -122,15 +122,15 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
122
122
  resolution: "Use either Title or a Toolbar",
123
123
  resolutionurls: [{
124
124
  text: "API Reference: Form",
125
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
125
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
126
126
  },
127
127
  {
128
128
  text: "API Reference: SimpleForm",
129
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
129
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
130
130
  },
131
131
  {
132
132
  text: "API Reference: FormContainer",
133
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormContainer"
133
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormContainer"
134
134
  }],
135
135
  check: function (oIssueManager, oCoreFacade, oScope) {
136
136
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -167,15 +167,15 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
167
167
  resolution: "Set a Title on Form or FormContainer or assign it via AriaLabelledBy",
168
168
  resolutionurls: [{
169
169
  text: "API Reference: Form",
170
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
170
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
171
171
  },
172
172
  {
173
173
  text: "API Reference: SimpleForm",
174
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
174
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
175
175
  },
176
176
  {
177
177
  text: "API Reference: FormContainer",
178
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormContainer"
178
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormContainer"
179
179
  }],
180
180
  check: function (oIssueManager, oCoreFacade, oScope) {
181
181
  oScope.getElementsByClassName("sap.ui.layout.form.FormContainer")
@@ -240,19 +240,19 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
240
240
  resolution: "Use only labels and controls implementing interface sap.ui.core.IFormContent as content of a Form",
241
241
  resolutionurls: [{
242
242
  text: "API Reference: Form",
243
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
243
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
244
244
  },
245
245
  {
246
246
  text: "API Reference: SimpleForm",
247
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
247
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
248
248
  },
249
249
  {
250
250
  text: "API Reference: FormElement",
251
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormElement"
251
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormElement"
252
252
  },
253
253
  {
254
254
  text: "API Reference: IFormContent",
255
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.core.IFormContent"
255
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.core.IFormContent"
256
256
  }],
257
257
  check: function (oIssueManager, oCoreFacade, oScope) {
258
258
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -360,15 +360,15 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
360
360
  resolution: "Set the Title used inside the Toolbar to AriaLabelledBy of the Form or FormContainer.",
361
361
  resolutionurls: [{
362
362
  text: "API Reference: Form",
363
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
363
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
364
364
  },
365
365
  {
366
366
  text: "API Reference: SimpleForm",
367
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
367
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
368
368
  },
369
369
  {
370
370
  text: "API Reference: FormContainer",
371
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormContainer"
371
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormContainer"
372
372
  }],
373
373
  check: function (oIssueManager, oCoreFacade, oScope) {
374
374
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -408,7 +408,7 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
408
408
  resolution: "Use only properties that are valid for the layout used",
409
409
  resolutionurls: [{
410
410
  text: "API Reference: SimpleForm",
411
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
411
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
412
412
  }],
413
413
  check: function (oIssueManager, oCoreFacade, oScope) {
414
414
  oScope.getElementsByClassName("sap.ui.layout.form.SimpleForm")
@@ -477,15 +477,15 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
477
477
  resolution: "Set the editable property according to the content of the Form.",
478
478
  resolutionurls: [{
479
479
  text: "API Reference: Form",
480
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
480
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
481
481
  },
482
482
  {
483
483
  text: "API Reference: SimpleForm",
484
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
484
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
485
485
  },
486
486
  {
487
487
  text: "API Reference: FormElement",
488
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormElement"
488
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormElement"
489
489
  }],
490
490
  check: function (oIssueManager, oCoreFacade, oScope) {
491
491
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -679,11 +679,11 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
679
679
  resolution: "Use only valid LayoutData that are suitable for the layout used",
680
680
  resolutionurls: [{
681
681
  text: "API Reference: ResponsiveGridLayout",
682
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.ResponsiveGridLayout"
682
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.ResponsiveGridLayout"
683
683
  },
684
684
  {
685
685
  text: "API Reference: ResponsiveLayout",
686
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.ResponsiveLayout"
686
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.ResponsiveLayout"
687
687
  }],
688
688
  check: function (oIssueManager, oCoreFacade, oScope) {
689
689
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -740,15 +740,15 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
740
740
  resolution: "Assign a label to the field",
741
741
  resolutionurls: [{
742
742
  text: "API Reference: Form",
743
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
743
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
744
744
  },
745
745
  {
746
746
  text: "API Reference: SimpleForm",
747
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
747
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
748
748
  },
749
749
  {
750
750
  text: "API Reference: FormElement",
751
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormElement"
751
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormElement"
752
752
  }],
753
753
  check: function (oIssueManager, oCoreFacade, oScope) {
754
754
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -816,11 +816,11 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
816
816
  resolution: "Use Labels only in the Label aggregation",
817
817
  resolutionurls: [{
818
818
  text: "API Reference: Form",
819
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
819
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
820
820
  },
821
821
  {
822
822
  text: "API Reference: FormElement",
823
- href:"https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.FormElement"
823
+ href:"https://openui5.hana.ondemand.com/api/sap.ui.layout.form.FormElement"
824
824
  }],
825
825
  check: function (oIssueManager, oCoreFacade, oScope) {
826
826
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -878,19 +878,19 @@ sap.ui.define(["sap/ui/support/library", "sap/ui/layout/library"],
878
878
  resolution: "Use the ResponsiveGridLayout or ColumnLayout instead",
879
879
  resolutionurls: [{
880
880
  text: "API Reference: Form",
881
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.Form"
881
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.Form"
882
882
  },
883
883
  {
884
884
  text: "API Reference: SimpleForm",
885
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.SimpleForm"
885
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.SimpleForm"
886
886
  },
887
887
  {
888
888
  text: "API Reference: ResponsiveGridLayout",
889
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.ResponsiveGridLayout"
889
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.ResponsiveGridLayout"
890
890
  },
891
891
  {
892
892
  text: "API Reference: ColumnLayout",
893
- href: "https://sapui5.hana.ondemand.com/#/api/sap.ui.layout.form.ColumnLayout"
893
+ href: "https://openui5.hana.ondemand.com/api/sap.ui.layout.form.ColumnLayout"
894
894
  }],
895
895
  check: function (oIssueManager, oCoreFacade, oScope) {
896
896
  oScope.getElementsByClassName("sap.ui.layout.form.Form")
@@ -8,11 +8,13 @@
8
8
  @_sap_ui_layout_BlockLayout_BackgroundDashboardMargin: 0.25rem;
9
9
  @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin: 0.5rem;
10
10
  @_sap_ui_layout_BlockLayout_BackgroundDashboardAfterScrollbarMargin: 0.375rem;
11
-
12
- @_sap_ui_layout_BlockLayout_LinkTextShadow: @sapUiShadowText;
13
-
14
11
  @_sap_ui_layout_BlockLayout_BackgroundDashboardColor: @sapUiContentForegroundTextColor;
15
12
  @_sap_ui_layout_BlockLayout_BackgroundDashboardBorderRadius: 0;
13
+ @_sap_ui_layout_BlockLayout_BackgroundDashboardCellShadow: @sapUiShadowLevel0;
14
+ @_sap_ui_layout_BlockLayout_BackgroundDashboardCellShadowOffset: 0;
15
+
16
+ @_sap_ui_layout_BlockLayout_LinkTextShadow: @sapUiShadowText;
17
+ @_sap_ui_layout_BlockLayout_CellTextColor: @sapUiContentForegroundTextColor;
16
18
 
17
19
  .setCellsColorDoubles (@evenCell, @oddCell) {
18
20
  // Match every even cell
@@ -36,7 +38,7 @@
36
38
  font-family: @sapUiFontFamily;
37
39
  font-weight: normal;
38
40
  font-size: 0.875rem;
39
- color: @sapUiContentForegroundTextColor;
41
+ color: @_sap_ui_layout_BlockLayout_CellTextColor;
40
42
  padding: 1rem;
41
43
 
42
44
  > .sapUiIcon {
@@ -129,11 +131,15 @@
129
131
  .sapUiBlockLayoutCell {
130
132
  font-weight: normal;
131
133
  color: @_sap_ui_layout_BlockLayout_BackgroundDashboardColor;
134
+
135
+ // use padding and negative margin to display box-shadow outside of the cell, because it has overflow: hidden
136
+ padding: @_sap_ui_layout_BlockLayout_BackgroundDashboardCellShadowOffset;
137
+ margin: -@_sap_ui_layout_BlockLayout_BackgroundDashboardCellShadowOffset;
132
138
  }
133
139
 
134
140
  .sapUiBlockCellContent {
135
141
  background-color: @sapUiGroupContentBackground;
136
- box-shadow: @sapUiShadowLevel0;
142
+ box-shadow: @_sap_ui_layout_BlockLayout_BackgroundDashboardCellShadow;
137
143
  margin: @_sap_ui_layout_BlockLayout_BackgroundDashboardMargin;
138
144
  border-radius: @_sap_ui_layout_BlockLayout_BackgroundDashboardBorderRadius;
139
145
  }
@@ -146,19 +152,44 @@
146
152
  }
147
153
 
148
154
  &:not(.sapUiBlockLayoutSizeS) {
149
- .sapUiBlockLayoutCell:first-of-type .sapUiBlockCellContent {
150
- margin-left: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust first cell in a row with 0.5rem on the left
155
+ .sapUiBlockLayoutCell:first-of-type {
156
+ margin-left: 0;
157
+ padding-left: 0;
158
+
159
+ .sapUiBlockCellContent {
160
+ margin-left: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust first cell in a row with 0.5rem on the left
161
+ }
151
162
  }
152
- .sapUiBlockLayoutCell:last-of-type .sapUiBlockCellContent {
153
- margin-right: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust last cell in a row with 0.5rem on the right
163
+
164
+ .sapUiBlockLayoutCell:last-of-type {
165
+ margin-right: 0;
166
+ padding-right: 0;
167
+
168
+ .sapUiBlockCellContent {
169
+ margin-right: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust last cell in a row with 0.5rem on the right
170
+ }
154
171
  }
155
172
 
156
- .sapUiBlockLayoutRow:first-of-type .sapUiBlockCellContent {
157
- margin-top: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust spacing at the top for all cells in the first row
173
+ .sapUiBlockLayoutRow:first-of-type {
174
+ .sapUiBlockLayoutCell {
175
+ margin-top: 0;
176
+ padding-top: 0;
177
+ }
178
+
179
+ .sapUiBlockCellContent {
180
+ margin-top: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust spacing at the top for all cells in the first row
181
+ }
158
182
  }
159
183
 
160
- .sapUiBlockLayoutRow:last-of-type .sapUiBlockCellContent {
161
- margin-bottom: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust spacing at the bottom for all cells in the last row
184
+ .sapUiBlockLayoutRow:last-of-type {
185
+ .sapUiBlockLayoutCell {
186
+ margin-bottom: 0;
187
+ padding-bottom: 0;
188
+ }
189
+
190
+ .sapUiBlockCellContent {
191
+ margin-bottom: @_sap_ui_layout_BlockLayout_BackgroundDashboardEdgeChildMargin; // Adjust spacing at the bottom for all cells in the last row
192
+ }
162
193
  }
163
194
  }
164
195
 
@@ -170,12 +201,26 @@
170
201
  margin-right: 0.5rem;
171
202
  }
172
203
 
173
- .sapUiBlockLayoutRow:first-of-type .sapUiBlockLayoutCell:first-of-type .sapUiBlockCellContent {
174
- margin-top: 0.5rem; // Add 0.5rem spacing for the first cell in the first row
204
+ .sapUiBlockLayoutRow:first-of-type {
205
+ .sapUiBlockLayoutCell {
206
+ margin-top: 0;
207
+ padding-top: 0;
208
+
209
+ &:first-of-type .sapUiBlockCellContent {
210
+ margin-top: 0.5rem; // Add 0.5rem spacing for the first cell in the first row
211
+ }
212
+ }
175
213
  }
176
214
 
177
- .sapUiBlockLayoutRow:last-of-type .sapUiBlockLayoutCell:last-of-type .sapUiBlockCellContent {
178
- margin-bottom: 0.5rem; // Add 0.5rem spacing for the last cell in the last row
215
+ .sapUiBlockLayoutRow:last-of-type {
216
+ .sapUiBlockLayoutCell {
217
+ margin-bottom: 0;
218
+ padding-bottom: 0;
219
+
220
+ &:last-of-type .sapUiBlockCellContent {
221
+ margin-bottom: 0.5rem; // Add 0.5rem spacing for the last cell in the last row
222
+ }
223
+ }
179
224
  }
180
225
  }
181
226
  }
@@ -6,8 +6,6 @@
6
6
  @_sap_ui_layout_BlockLayoutCell_background: transparent;
7
7
 
8
8
  .sapUiBlockLayoutCell {
9
- display: -webkit-box;
10
- display: -webkit-flex;
11
9
  display: flex;
12
10
  overflow: hidden;
13
11
  }
@@ -4,15 +4,12 @@
4
4
  /* ============================================= */
5
5
 
6
6
  .sapUiBlockScrollingRow {
7
- display: -webkit-box;
8
- display: -webkit-flex;
9
7
  display: flex;
10
- -webkit-flex-wrap: nowrap;
11
8
  flex-wrap: nowrap;
12
- overflow: auto;
9
+ overflow-x: auto;
10
+ overflow-y: hidden;
13
11
 
14
12
  .sapUiBlockScrollableCell {
15
- -webkit-flex-shrink: 0;
16
13
  flex-shrink: 0;
17
14
  width: 40%;
18
15
  }
@@ -7,6 +7,9 @@
7
7
  @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonWidth: 2.5rem;
8
8
  @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonHeight: 2.375rem;
9
9
  @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonFocusBorderRadius: unset;
10
+ @_sap_ui_layout_ResponsiveSplitter_PaginatorSelectedButton: @sapUiContentIconColor;
11
+ @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonActive: @sapUiContentContrastIconColor;
12
+ @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonHoverShadow: none;
10
13
 
11
14
  .sapUiResponsiveSplitter {
12
15
  width: 100%;
@@ -84,6 +87,7 @@
84
87
 
85
88
  &:hover {
86
89
  background-color: @sapUiButtonLiteHoverBackground;
90
+ box-shadow: @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonHoverShadow;
87
91
 
88
92
  &::after {
89
93
  background-color: @sapUiContentNonInteractiveIconColor;
@@ -94,14 +98,14 @@
94
98
  background-color: @sapUiButtonLiteActiveBackground;
95
99
 
96
100
  &::after {
97
- background-color: @sapUiContentContrastIconColor;
101
+ background-color: @_sap_ui_layout_ResponsiveSplitter_PaginatorButtonActive;
98
102
  }
99
103
  }
100
104
  }
101
105
 
102
106
  .sapUiResponsiveSplitterPaginatorSelectedButton {
103
107
  &::after {
104
- background-color: @sapUiContentIconColor;
108
+ background-color: @_sap_ui_layout_ResponsiveSplitter_PaginatorSelectedButton;
105
109
  width: 0.5rem;
106
110
  height: 0.5rem;
107
111
  margin-top: 0.875rem;
@@ -109,7 +113,7 @@
109
113
 
110
114
  &:hover {
111
115
  &::after {
112
- background-color: @sapUiContentIconColor;
116
+ background-color: @_sap_ui_layout_ResponsiveSplitter_PaginatorSelectedButton;
113
117
  }
114
118
  }
115
119
  }