New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@openui5/sap.ui.layout

Package Overview
Dependencies
Maintainers
4
Versions
591
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openui5/sap.ui.layout - npm Package Compare versions

Comparing version 1.54.0 to 1.54.1

4

package.json
{
"name": "@openui5/sap.ui.layout",
"version": "1.54.0",
"version": "1.54.1",
"description": "OpenUI5 UI Library sap.ui.layout",

@@ -17,4 +17,4 @@ "author": "SAP SE (https://www.sap.com)",

"dependencies": {
"@openui5/sap.ui.core": "1.54.0"
"@openui5/sap.ui.core": "1.54.1"
}
}

@@ -33,3 +33,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -36,0 +36,0 @@ * @constructor

@@ -23,3 +23,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -26,0 +26,0 @@ * @constructor

@@ -63,3 +63,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -66,0 +66,0 @@ * @constructor

@@ -23,3 +23,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -26,0 +26,0 @@ * @constructor

@@ -21,3 +21,3 @@ /*!

* @extends sap.ui.core.LayoutData
* @version 1.54.0
* @version 1.54.1
* @constructor

@@ -24,0 +24,0 @@ * @public

@@ -39,3 +39,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -42,0 +42,0 @@ * @constructor

@@ -16,3 +16,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @experimental Since 1.48.0

@@ -19,0 +19,0 @@ */

@@ -22,3 +22,3 @@ /*!

*
* @version 1.54.0
* @version 1.54.1
*

@@ -25,0 +25,0 @@ * @experimental Since 1.50.0 This class is experimental and provides only limited functionality. Also the API might be

@@ -22,3 +22,3 @@ /*!

*
* @version 1.54.0
* @version 1.54.1
*

@@ -25,0 +25,0 @@ * @experimental Since 1.49.0 This class is experimental and provides only limited functionality. Also the API might be

@@ -16,3 +16,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @experimental Since 1.27.0

@@ -28,3 +28,3 @@ */

if (aStopToken.indexOf(sType) === -1) {
if (aContent[i].getVisible()) {
if (oModifier.getVisible(aContent[i])) {
return true;

@@ -31,0 +31,0 @@ }

@@ -16,3 +16,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @experimental Since 1.27.0

@@ -19,0 +19,0 @@ */

@@ -16,3 +16,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @experimental Since 1.34.0

@@ -80,7 +80,7 @@ */

var fnIsTitleOrToolbar = function(aElements, iIndex) {
var fnIsTitleOrToolbar = function(aElements, iIndex, oModifier) {
if (iIndex >= aElements.length || iIndex === -1) {
return true;
}
var sType = aElements[iIndex].getMetadata().getName();
var sType = oModifier.getControlType(aElements[iIndex]);
return (MoveSimpleForm.sTypeTitle === sType

@@ -115,3 +115,3 @@ || MoveSimpleForm.sTypeToolBar === sType

var fnMapFieldIndexToContentAggregationIndex = function(oModifier, aContent, iGroupStart, iFieldIndex, bUp) {
if (!fnIsTitleOrToolbar(aContent, iGroupStart)) {
if (!fnIsTitleOrToolbar(aContent, iGroupStart, oModifier)) {
jQuery.sap.log.error("Illegal argument. iIndex has to point to a Label.");

@@ -118,0 +118,0 @@ } else {

@@ -19,3 +19,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @since 1.48

@@ -22,0 +22,0 @@ * @private

@@ -19,3 +19,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @since 1.40

@@ -22,0 +22,0 @@ * @private

@@ -16,3 +16,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @experimental Since 1.27.0

@@ -19,0 +19,0 @@ */

@@ -92,3 +92,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -95,0 +95,0 @@ * @constructor

@@ -60,3 +60,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -63,0 +63,0 @@ * @constructor

@@ -8,3 +8,3 @@ /*!

// Provides control sap.ui.layout.form.Form.
sap.ui.define(['sap/ui/core/Control', 'sap/ui/layout/library', "./FormRenderer"],
sap.ui.define(['sap/ui/core/Control', 'sap/ui/layout/library', './FormRenderer'],
function(Control, library, FormRenderer) {

@@ -20,3 +20,4 @@ "use strict";

* @class
* A <code>Form</code> control arranges labels and fields (like input fields) into groups and rows. There are different ways to visualize forms for different screen sizes.
* A <code>Form</code> control arranges labels and fields (like input fields) into groups and rows.
* There are different ways to visualize forms for different screen sizes.
*

@@ -34,9 +35,13 @@ * A <code>Form</code> is structured into <code>FormContainers</code>. Each <code>FormContainer</code> consists of <code>FormElements</code>.

*
* <b>Note:</b> Do not put any layout controls into the <code>FormElements</code>. This could destroy the visual layout,
* keyboard support and screen-reader support.
* <b>Warning:</b> Do not put any layout or other container controls into the <code>FormElement</code>.
* Views are also not supported. This could damage the visual layout, keyboard support and screen-reader support.
*
* If editable controls are used as content, the <code>editable</code> property must be set to <code>true</code>,
* otherwise to <code>false</code>. If the <code>editable</code> property is set incorrectly, there will be visual issues
* like wrong label alignment or wrong spacing between the controls.
*
* @extends sap.ui.core.Control
*
* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -60,3 +65,3 @@ * @constructor

/**
* Applies a device-specific and theme-specific line-height to the form rows if the form has editable content.
* Applies a device-specific and theme-specific line height and label alignment to the form rows if the form has editable content.
* If set, all (not only the editable) rows of the form will get the line height of editable fields.

@@ -63,0 +68,0 @@ *

@@ -26,3 +26,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -29,0 +29,0 @@ * @constructor

@@ -24,3 +24,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -49,4 +49,5 @@ * @constructor

* If a <code>Label</code> control is used, the properties of the <code>Label</code> can be set.
* If no assignment between <code>Label</code> and the fields is set via (<code>labelFor</code> property of the <code>Label</code>), it will be done automatically by the
* <code>FormElement</code>. In this case the <code>Label</code> is assigned to the fields of the <code>FormElement</code>.
* If no assignment between <code>Label</code> and the fields is set via (<code>labelFor</code> property of the <code>Label</code>),
* it will be done automatically by the <code>FormElement</code>.
* In this case the <code>Label</code> is assigned to the fields of the <code>FormElement</code>.
*/

@@ -61,6 +62,8 @@ label : {type : "sap.ui.core.Label", altTypes : ["string"], multiple : false},

/**
* Formular controls that belong together to be displayed in one row of a <code>Form</code>.
* Form controls that belong together to be displayed in one row of a <code>Form</code>.
*
* <b>Note:</b> Do not put any layout controls in here. This could destroy the visual layout,
* keyboard support and screen-reader support.
* <b>Warning:</b> Do not put any layout or other container controls in here.
* This could damage the visual layout, keyboard support and screen-reader support.
* Only form controls are allowed. Views are also not supported.
* Allowed controls implement the interface <code>sap.ui.core.IFormContent</code>.
*/

@@ -67,0 +70,0 @@ fields : {type : "sap.ui.core.Control", multiple : true, singularName : "field"}

@@ -30,3 +30,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -33,0 +33,0 @@ * @constructor

@@ -23,3 +23,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -26,0 +26,0 @@ * @constructor

@@ -23,3 +23,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -26,0 +26,0 @@ * @constructor

@@ -32,3 +32,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -35,0 +35,0 @@ * @constructor

@@ -36,3 +36,3 @@ /*!

* @extends sap.ui.layout.form.FormLayout
* @version 1.54.0
* @version 1.54.1
*

@@ -39,0 +39,0 @@ * @constructor

@@ -36,3 +36,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -39,0 +39,0 @@ * @constructor

@@ -41,3 +41,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -44,0 +44,0 @@ * @constructor

@@ -25,3 +25,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -28,0 +28,0 @@ * @constructor

@@ -18,3 +18,3 @@ /*!

* @version
* 1.54.0
* 1.54.1
* @namespace

@@ -21,0 +21,0 @@ */

@@ -25,3 +25,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -28,0 +28,0 @@ * @constructor

@@ -23,3 +23,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
* @public

@@ -31,3 +31,3 @@ */

name : "sap.ui.layout",
version: "1.54.0",
version: "1.54.1",
dependencies: ["sap.ui.core"],

@@ -34,0 +34,0 @@ designtime: "sap/ui/layout/designtime/library.designtime",

@@ -28,3 +28,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -31,0 +31,0 @@ * @constructor

@@ -41,3 +41,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -44,0 +44,0 @@ * @constructor

@@ -25,3 +25,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -28,0 +28,0 @@ * @constructor

@@ -69,3 +69,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -72,0 +72,0 @@ * @constructor

@@ -24,3 +24,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -27,0 +27,0 @@ * @constructor

@@ -30,3 +30,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -33,0 +33,0 @@ * @constructor

@@ -43,3 +43,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -46,0 +46,0 @@ * @constructor

@@ -27,3 +27,3 @@ /*!

* @extends sap.ui.core.LayoutData
* @version 1.54.0
* @version 1.54.1
*

@@ -30,0 +30,0 @@ * @constructor

@@ -28,3 +28,3 @@ /*!

* @author SAP SE
* @version 1.54.0
* @version 1.54.1
*

@@ -31,0 +31,0 @@ * @constructor

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc