Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sapui5/sap.ui.comp

Package Overview
Dependencies
Maintainers
5
Versions
320
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sapui5/sap.ui.comp - npm Package Compare versions

Comparing version 1.81.0 to 1.81.2

2

package.json
{
"name": "@sapui5/sap.ui.comp",
"version": "1.81.0",
"version": "1.81.2",
"description": "SAPUI5 Library sap.ui.comp",

@@ -5,0 +5,0 @@ "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",

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

name: "sap.ui.comp",
version: "1.81.0",
version: "1.81.2",
dependencies: [

@@ -31,0 +31,0 @@ "sap.ui.core",

@@ -10,3 +10,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -13,0 +13,0 @@ * @since 1.36.0

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -18,0 +18,0 @@ * @since 1.58.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.44.0

@@ -10,3 +10,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -13,0 +13,0 @@ * @since 1.25.0

@@ -29,3 +29,3 @@ /*

* @param {string} oFormatOptions.calendarType format options.
* @version 1.81.0
* @version 1.81.2
* @experimental This module is only for internal/experimental use!

@@ -32,0 +32,0 @@ * @private

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -19,0 +19,0 @@ * @experimental This module is only for internal/experimental use!

@@ -17,3 +17,3 @@ /*

* @experimental to be productized soon
* @version 1.81.0
* @version 1.81.2
* @since 1.31.0

@@ -20,0 +20,0 @@ * @alias sap.ui.comp.odata.SideEffects

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

* @param {object} oConstraints constraints.
* @version 1.81.0
* @version 1.81.2
* @experimental

@@ -24,0 +24,0 @@ * @private

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental

@@ -29,0 +29,0 @@ * @since 1.54.0

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @constructor

@@ -22,0 +22,0 @@ * @experimental This module is only for internal/experimental use!

@@ -29,3 +29,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -32,0 +32,0 @@ * @since 1.26.0

@@ -30,3 +30,3 @@ /* eslint-disable strict */

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @constructor

@@ -33,0 +33,0 @@ * @experimental This module is only for internal/experimental use!

@@ -20,3 +20,3 @@ /* eslint-disable strict */

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -23,0 +23,0 @@ * @since 1.34.0

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -19,0 +19,0 @@ * @since 1.34.0

@@ -10,3 +10,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -13,0 +13,0 @@ * @since 1.25.0

@@ -10,3 +10,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -13,0 +13,0 @@ * @since 1.48.0

@@ -925,2 +925,3 @@ /*

this._bindInnerControlSuggestions();
var that = this;

@@ -1269,2 +1270,6 @@ oValueListPromise = new Promise(function (resolve, reject) {

ValueListProvider.prototype._bindInnerControlSuggestions = function () {
if (this.sAggregationName && this.oControl.isBound(this.sAggregationName)) {
return;
}
if (this.sAggregationName && this.sAggregationName === "suggestionRows") {

@@ -1342,7 +1347,8 @@ this._createSuggestionTemplate();

onmousedown: function (oEvent) {
this._bindInnerControlSuggestions();
if (oEvent.target.tagName !== "INPUT") {
if ((this.oControl.getAggregation("_suggestionPopup") && this.oControl.getAggregation("_suggestionPopup").isOpen()) || oEvent.target.tagName !== "INPUT") {
return;
}
this._bindInnerControlSuggestions();
setTimeout(function () {

@@ -1395,8 +1401,8 @@ this._showInitialSuggestions("suggestionRows", oInput.getValue());

onmousedown: function (oEvent) {
this._bindInnerControlSuggestions();
if (oEvent.target.tagName !== "INPUT") {
if ((this.oControl.getPicker() && this.oControl.getPicker().isOpen()) || oEvent.target.tagName !== "INPUT") {
return;
}
this._bindInnerControlSuggestions();
setTimeout(function () {

@@ -1491,9 +1497,24 @@ this._showInitialSuggestions("items", oComboBox.getValue());

return Object.keys(oFilterInputData).every(function (sKey) {
var oCurrentItem = oItemData[sKey];
var sCurrentItem = oItemData[sKey];
var vFilteredItem = oFilterInputData[sKey];
if (!oCurrentItem){
if (!sCurrentItem) {
// if current item does not have property for filtering just return it
return true;
}
return oFilterInputData[sKey] === oCurrentItem;
if (typeof vFilteredItem === "string") {
// if filter data item is string directly compare to it
return vFilteredItem === sCurrentItem;
}
if (typeof vFilteredItem === "object" && vFilteredItem.items && vFilteredItem.items.length > 0) {
// if filter data item is object and has items, compare current item against every item from filter data array
return vFilteredItem.items.some(function (oFilterItem) {
return oFilterItem.key === sCurrentItem;
});
}
// If not filter data could be obtained just return true
return true;
});

@@ -1500,0 +1521,0 @@ };

@@ -12,3 +12,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -15,0 +15,0 @@ * @since 1.29.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*

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

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -12,3 +12,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @since 1.28.0

@@ -15,0 +15,0 @@ * @returns {sap.ui.comp.smartfield.ODataControlSelector} new control selector instance.

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -65,3 +65,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*

@@ -68,0 +68,0 @@ * @constructor

@@ -14,3 +14,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -17,0 +17,0 @@ * @since 1.31.0

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -21,0 +21,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.31.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.28.0

@@ -11,3 +11,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @private

@@ -14,0 +14,0 @@ * @since 1.34.0

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*

@@ -32,0 +32,0 @@ * @constructor

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -26,0 +26,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.33.0

@@ -87,0 +87,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -20,0 +20,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.46

@@ -23,0 +23,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -20,0 +20,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -20,0 +20,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -16,0 +16,0 @@ */

@@ -14,3 +14,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -17,0 +17,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

@@ -27,0 +27,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.27.0

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

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.46

@@ -17,0 +17,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.46

@@ -18,0 +18,0 @@ */

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @experimental Since 1.44.0

@@ -16,0 +16,0 @@ */

@@ -48,3 +48,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.38

@@ -51,0 +51,0 @@ * @constructor

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

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.38

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

@@ -37,3 +37,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.60

@@ -40,0 +40,0 @@ * @constructor

@@ -38,3 +38,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.58

@@ -41,0 +41,0 @@ * @constructor

@@ -34,3 +34,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.61

@@ -37,0 +37,0 @@ * @constructor

@@ -34,3 +34,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @constructor

@@ -37,0 +37,0 @@ * @public

@@ -37,3 +37,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.60

@@ -40,0 +40,0 @@ * @constructor

@@ -35,3 +35,3 @@ /*

* @extends sap.ui.core.Control
* @version 1.81.0
* @version 1.81.2
* @since 1.38

@@ -38,0 +38,0 @@ * @constructor

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

* @static
* @version 1.81.0
* @version 1.81.2
* @since 1.38.0

@@ -13,0 +13,0 @@ */

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

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @constructor

@@ -35,0 +35,0 @@ * @public

@@ -35,3 +35,3 @@ /*

* @extends sap.ui.comp.smartmicrochart.SmartMicroChartBase
* @version 1.81.0
* @version 1.81.2
* @since 1.58

@@ -38,0 +38,0 @@ * @constructor

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*

@@ -29,0 +29,0 @@ * @public

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*

@@ -114,0 +114,0 @@ * @public

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*/

@@ -22,0 +22,0 @@ var AddMultiEditFields = {};

@@ -88,3 +88,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
*

@@ -91,0 +91,0 @@ * @public

@@ -17,3 +17,3 @@ /*

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @constructor

@@ -20,0 +20,0 @@ * @public

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

* @author SAP SE
* @version 1.81.0
* @version 1.81.2
* @since 1.63.0

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

Sorry, the diff of this file is not supported yet

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

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