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

@openui5/sap.ui.unified

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.unified - npm Package Compare versions

Comparing version 1.60.2 to 1.61.0

4

package.json
{
"name": "@openui5/sap.ui.unified",
"version": "1.60.2",
"version": "1.61.0",
"description": "OpenUI5 UI Library sap.ui.unified",

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

"dependencies": {
"@openui5/sap.ui.core": "1.60.2"
"@openui5/sap.ui.core": "1.61.0"
}
}

@@ -576,4 +576,43 @@ /*!

/**
* Evaluates whether the given minutes are less than the current.
* The function uses local js date for comparison.
* @param {int} iMinutes The minutes to check
* @return {boolean} true if the give minutes are less than the current
* @private
*/
CalendarUtils._areCurrentMinutesLessThan = function (iMinutes) {
var iCurrentMinutes = new Date().getMinutes();
return iMinutes >= iCurrentMinutes;
};
/**
* Evaluates whether the given minutes are more than the current.
* The function uses local js date for comparison.
* @param {int} iMinutes The minutes to check
* @return {boolean} true if the give minutes are more than the current
* @private
*/
CalendarUtils._areCurrentMinutesMoreThan = function (iMinutes) {
var iCurrentMinutes = new Date().getMinutes();
return iMinutes <= iCurrentMinutes;
};
/**
* Evaluates whether the given date is part of the weekend.
* @param {sap.ui.unified.calendar.CalendarDate} oCalDate The date to be checked
* @param {object} oLocaleData locale date for the used locale
* @return {boolean} True if the date is part of the weekend
* @private
*/
CalendarUtils._isWeekend = function (oCalDate, oLocaleData) {
var iDay = oCalDate.getDay();
return iDay === oLocaleData.getWeekendStart() || iDay === oLocaleData.getWeekendEnd();
};
return CalendarUtils;
}, /* bExport= */ true);

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

* @extends sap.ui.unified.calendar.Month
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

@@ -317,3 +317,3 @@ * @constructor

iMin = parseInt(iMin, 10);
iMin = parseInt(iMin);
if (isNaN(iMin) || iMin < 0 || iMin > 11) {

@@ -323,3 +323,3 @@ iMin = 0;

iMax = parseInt(iMax, 10);
iMax = parseInt(iMax);
if (isNaN(iMax) || iMax < 0 || iMax > 11) {

@@ -343,3 +343,3 @@ iMax = 11;

var $DomRef = jQuery(aMonths[i]);
var iMonth = parseInt( $DomRef.attr("id").slice( iIDLength), 10);
var iMonth = parseInt( $DomRef.attr("id").slice( iIDLength));
if (iMonth < this._iMinMonth || iMonth > this._iMaxMonth) {

@@ -363,3 +363,3 @@ $DomRef.addClass("sapUiCalItemDsbl");

var oFirstMonth = this._oItemNavigation.getItemDomRefs()[0];
return parseInt( oFirstMonth.id.slice( this.getId().length + 2), 10);
return parseInt( oFirstMonth.id.slice( this.getId().length + 2));
} else {

@@ -366,0 +366,0 @@ return 0;

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

@@ -65,0 +65,0 @@ * @constructor

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

* @extends sap.ui.unified.calendar.DatesRow
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

@@ -58,0 +58,0 @@ * @constructor

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

* @extends sap.ui.unified.DateTypeRange
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.unified.Calendar
* @version 1.60.2
* @version 1.61.0
*

@@ -259,5 +259,3 @@ * @constructor

oHeader.setTextButton1(sText, true);
if (oTexts.bShort) {
oHeader.setAriaLabelButton1(sAriaLabel);
}
oHeader.setAriaLabelButton1(sAriaLabel);
}

@@ -264,0 +262,0 @@ };

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.core.Element
* @version 1.60.2
* @version 1.61.0
*

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

@@ -209,3 +209,3 @@ /*

rb = sap.ui.getCore().getLibraryResourceBundle("sap.ui.unified");
sText = rb.getText("LEGEND_UNNAMED_TYPE", parseInt(sType.slice(4), 10).toString());
sText = rb.getText("LEGEND_UNNAMED_TYPE", parseInt(sType.slice(4)).toString());
CalendarLegendRenderer.typeARIATexts[sType] = new InvisibleText({ text: sText });

@@ -212,0 +212,0 @@ CalendarLegendRenderer.typeARIATexts[sType].toStatic();

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

@@ -71,0 +71,0 @@ * @constructor

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

* @extends sap.ui.unified.CalendarDateInterval
* @version 1.60.2
* @version 1.61.0
*

@@ -67,0 +67,0 @@ * @constructor

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

* @extends sap.ui.unified.CalendarDateInterval
* @version 1.60.2
* @version 1.61.0
*

@@ -45,0 +45,0 @@ * @constructor

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

* @extends sap.ui.core.Control
* @version 1.60.2
* @version 1.61.0
*

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

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

// Provides default renderer for control sap.ui.unified.ColorPicker
sap.ui.define([],
function() {
sap.ui.define(['./ColorPickerDisplayMode', "sap/ui/Device"],
function(ColorPickerDisplayMode, Device) {
"use strict";

@@ -27,15 +27,222 @@

ColorPickerRenderer.render = function(oRm, oControl){
var sDisplayMode = oControl.getDisplayMode(),
bResponsive = oControl.bResponsive;
oRm.write("<div");
oRm.writeControlData(oControl);
if (oControl.bResponsive) {
oRm.addClass("sapUiColorPicker-" + oControl.getDisplayMode());
if (bResponsive) {
oRm.addClass("sapUiColorPicker-ColorPickerMatrix");
oRm.addClass("sapUiColorPicker-" + sDisplayMode);
oRm.addClass("sapUnifiedColorPicker");
if (oControl._bHSLMode) {
oRm.addClass("sapUiColorPickerHSL");
}
}
if (Device.system.phone) {
oRm.addClass("sapUiCPPhone");
}
oRm.writeClasses();
oRm.write(">");
oRm.renderControl(oControl.getAggregation("_grid"));
if (!bResponsive) {
//if it's not responsive, then it's commons.ColorPicker -> render the grid
oRm.renderControl(oControl.getAggregation("_grid"));
} else {
//render unified.ColorPicker
switch (sDisplayMode) {
case ColorPickerDisplayMode.Default:
this.renderDefaultColorPicker(oRm, oControl);
break;
case ColorPickerDisplayMode.Large:
this.renderLargeColorPicker(oRm, oControl);
break;
case ColorPickerDisplayMode.Simplified:
this.renderSimplifiedColorPicker(oRm, oControl);
}
}
oRm.write("</div>");
};
ColorPickerRenderer.renderDefaultColorPicker = function(oRm, oControl) {
oRm.renderControl(oControl.getAggregation("_oCPBox"));
if (Device.system.phone) { //mobile
oRm.write("<div class='sapUiCPPhoneContent'>");
oRm.write("<div class='sapUiCPSlidersPhone'>");
oRm.renderControl(oControl.getAggregation("_oSlider"));
oRm.renderControl(oControl.getAggregation("_oAlphaSlider"));
oRm.write("</div>");
this.renderMobileSwatches(oRm, oControl);
oRm.write("</div>");
} else { //desktop or tablet
oRm.renderControl(oControl.getAggregation("_oSlider"));
oRm.renderControl(oControl.getAggregation("_oAlphaSlider"));
this.renderDesktopSwatchesAndHexFields(oRm, oControl);
}
oRm.write("<div class='sapUiCPDefaultWrapper'>");
oRm.write("<div class='sapUiCPDefaultRGB'>");
oRm.renderControl(oControl.getAggregation("_oRedField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oGreenField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oBlueField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oAlphaField"));
oRm.write("</div>");
//render the input fields for HSL/V + A and don't display them when initial rendered
oRm.write("<div class='sapUiCPDefaultHSLV'>");
oRm.renderControl(oControl.getAggregation("_oHueField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oSatField"));
oRm.write("<div class='sapUiCPPercentSymbol'>%</div>");
oRm.renderControl(oControl.getAggregation("_oLitField"));
oRm.renderControl(oControl.getAggregation("_oValField"));
if (oControl.getMode() === "HSL") {
oRm.write("<div class='sapUiCPPercentSymbol'>%</div>");
} else {
//Val doesn't have to have '%' symbol so just render an empty div
this.renderEmptyDiv(oRm);
}
oRm.renderControl(oControl.getAggregation("_oAlphaField"));
oRm.write("</div>");
oRm.renderControl(oControl.getAggregation("_oButton"));
this.renderRGBLabel(oRm, oControl);
this.renderHSLVLabel(oRm, oControl);
oRm.write("</div>");
};
ColorPickerRenderer.renderLargeColorPicker = function(oRm, oControl) {
oRm.renderControl(oControl.getAggregation("_oCPBox"));
oRm.renderControl(oControl.getAggregation("_oSlider"));
oRm.renderControl(oControl.getAggregation("_oAlphaSlider"));
this.renderDesktopSwatchesAndHexFields(oRm, oControl);
oRm.write("<div class='sapUiCPRGBA'>");
oRm.renderControl(oControl.oRbRGB);
oRm.renderControl(oControl.getAggregation("_oRedField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oGreenField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oBlueField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oAlphaField"));
oRm.write("</div>");
this.renderRGBLabel(oRm, oControl);
oRm.write("<div class='sapUiCPHSLV'>");
oRm.renderControl(oControl.oRbHSLV);
oRm.renderControl(oControl.getAggregation("_oHueField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oSatField"));
oRm.write("<div class='sapUiCPPercentSymbol'>%</div>");
oControl.getMode() === "HSL" ? this.renderLFirst(oRm, oControl) : this.renderVFirst(oRm, oControl);
oRm.write("</div>");
this.renderHSLVLabel(oRm, oControl);
};
ColorPickerRenderer.renderSimplifiedColorPicker = function(oRm, oControl) {
oRm.renderControl(oControl.getAggregation("_oCPBox"));
if (Device.system.phone) {
oRm.write("<div class='sapUiCPPhoneContent'>");
oRm.write("<div class='sapUiCPSlidersPhone'>");
oRm.renderControl(oControl.getAggregation("_oSlider"));
oRm.write("</div>");
oRm.renderControl(oControl.getAggregation("_oHexField"));
this.renderMobileSwatches(oRm, oControl);
oRm.write("<div class='sapUiCPHexWrapper'>");
oRm.write("<span class='sapUiCPHexText'>Hex</span>");
oRm.write("</div>");
oRm.write("</div>");
} else {
oRm.renderControl(oControl.getAggregation("_oSlider"));
this.renderDesktopSwatchesAndHexFields(oRm, oControl);
}
};
/**
* Renders the ColorPicker's swatches and hex field.
*
* @param {sap.ui.core.RenderManager} oRm the RenderManager that can be used for writing to the Render-Output-Buffer
* @param {sap.ui.core.Control} oControl an object representation of the control that should be rendered
*/
ColorPickerRenderer.renderDesktopSwatchesAndHexFields = function(oRm, oControl) {
oRm.write("<div class='sapUiCPComparisonWrapper'>");
oRm.write("<div id='" + oControl.getId() + "-ocBox' class='sapUiColorPicker-ColorPickerOldColor'></div>");
oRm.write("<div id='" + oControl.getId() + "-ncBox' class='sapUiColorPicker-ColorPickerNewColor'></div>");
oRm.write("</div>");
oRm.write("<div class='sapUiCPHexWrapper'>");
oRm.write("<span class='sapUiCPHexText'>Hex</span>");
oRm.write("</div>");
oRm.renderControl(oControl.getAggregation("_oHexField"));
};
/**
* Renders the ColorPicker's swatches when mobile for both Default & Simplified display mode.
*
* @param {sap.ui.core.RenderManager} oRm the RenderManager that can be used for writing to the Render-Output-Buffer
* @param {sap.ui.core.Control} oControl an object representation of the control that should be rendered
*/
ColorPickerRenderer.renderMobileSwatches = function(oRm, oControl) {
oRm.write("<div class='sapUiCPComparisonWrapper sapUiCPComparisonWrapperPhone'>");
oRm.write("<div id='" + oControl.getId() + "-ocBox' class='sapUiColorPicker-ColorPickerOldColor'></div>");
oRm.write("<div id='" + oControl.getId() + "-ncBox' class='sapUiColorPicker-ColorPickerNewColor'></div>");
oRm.write("</div >");
};
//Renders Lit first and sets visibility hidden to Val because of flex rendering reasons.
ColorPickerRenderer.renderLFirst = function(oRm, oControl) {
oRm.renderControl(oControl.getAggregation("_oLitField"));
oRm.write("<div class='sapUiCPPercentSymbol'>%</div>");
oRm.renderControl(oControl.getAggregation("_oValField"));
};
//Renders Val first and sets visibility hidden to Lit because of flex rendering reasons.
ColorPickerRenderer.renderVFirst = function(oRm, oControl) {
oRm.renderControl(oControl.getAggregation("_oValField"));
this.renderEmptyDiv(oRm);
oRm.renderControl(oControl.getAggregation("_oLitField"));
};
//Renders empty div because of display flex rendering reasons.
ColorPickerRenderer.renderEmptyDiv = function(oRm) {
oRm.write("<div class='sapUiCPEmptyDiv'></div>");
};
//Renders 'RGB' text.
ColorPickerRenderer.renderRGBLabel = function(oRm, oControl) {
oRm.write("<div class='sapUiCPRGBText'>");
oRm.write("<span class='sapUiCPText'>R</span>");
this.renderEmptyDiv(oRm);
oRm.write("<span class='sapUiCPText'>G</span>");
this.renderEmptyDiv(oRm);
oRm.write("<span class='sapUiCPText'>B</span>");
this.renderEmptyDiv(oRm);
if (oControl.getDisplayMode() === "Default") {
oRm.write("<span class='sapUiCPText'>A</span>");
} else {
oRm.write("<span class='sapUiCPText'></span>");
}
oRm.write("</div>");
};
//Renders HSL/V text.
ColorPickerRenderer.renderHSLVLabel = function(oRm, oControl) {
oRm.write("<div class='sapUiCPHSLVText'>");
oRm.write("<span class='sapUiCPText'>H</span>");
this.renderEmptyDiv(oRm);
oRm.write("<span class='sapUiCPText'>S</span>");
this.renderEmptyDiv(oRm);
oControl.getMode() === "HSL" ? oRm.write("<span class='sapUiCPText'>L</span>") : oRm.write("<span class='sapUiCPText'>V</span>");
this.renderEmptyDiv(oRm);
oRm.write("<span class='sapUiCPText'>A</span>");
oRm.write("</div>");
};
return ColorPickerRenderer;
}, /* bExport= */ true);

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -129,3 +129,3 @@ * @constructor

ContentSwitcher.prototype.setActiveContent = function(iNumber) {
iNumber = parseInt(iNumber, 10);
iNumber = parseInt(iNumber);

@@ -132,0 +132,0 @@ if (isNaN(iNumber) || iNumber < 1) {

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -60,0 +60,0 @@ * @constructor

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

*
* @version 1.60.2
* @version 1.61.0
* @namespace

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

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

* @extends sap.ui.core.Element
* @version 1.60.2
* @version 1.61.0
*

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

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

* @extends sap.ui.unified.DateRange
* @version 1.60.2
* @version 1.61.0
*

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -247,2 +247,14 @@ * @constructor

},
associations : {
/**
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
*/
ariaDescribedBy: {type: "sap.ui.core.Control", multiple: true, singularName: "ariaDescribedBy"},
/**
* Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
*/
ariaLabelledBy: {type: "sap.ui.core.Control", multiple: true, singularName: "ariaLabelledBy"}
},
events : {

@@ -557,2 +569,25 @@

/**
* Ensures that FileUploader's internal button will have a reference back to the labels, by which
* the FileUploader is labelled
*
* @returns {sap.ui.unified.FileUploader} For chaining
* @private
*/
FileUploader.prototype._ensureBackwardsReference = function () {
var oInternalButton = this.oBrowse,
aInternalButtonAriaLabelledBy = oInternalButton.getAriaLabelledBy(),
aReferencingLabels = LabelEnablement.getReferencingLabels(this);
if (aInternalButtonAriaLabelledBy) {
aReferencingLabels.forEach(function (sLabelId) {
if (aInternalButtonAriaLabelledBy.indexOf(sLabelId) === -1) {
oInternalButton.addAriaLabelledBy(sLabelId);
}
});
}
return this;
};
FileUploader.prototype.setFileType = function(vTypes) {

@@ -559,0 +594,0 @@ // Compatibility issue: converting the given types to an array in case it is a string

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

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

@@ -73,2 +73,3 @@ /*!

oRm.write('</div><div>'); //-> per style margin
oFileUploader._ensureBackwardsReference();
oRm.renderControl(oFileUploader.oBrowse);

@@ -75,0 +76,0 @@

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

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

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

name : "sap.ui.unified",
version: "1.60.2",
version: "1.61.0",
dependencies : ["sap.ui.core"],

@@ -84,3 +84,3 @@ designtime: "sap/ui/unified/designtime/library.designtime",

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
* @public

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
* @since 1.21.0

@@ -65,0 +65,0 @@ *

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
* @since 1.21.0

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
* @since 1.21.0

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

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

*
* @version 1.60.2
* @version 1.61.0
* @namespace

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
* @since 1.21.0

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -34,0 +34,0 @@ * @constructor

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

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

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -470,3 +470,3 @@ * @constructor

var duration = parseInt(Parameters.get("_sap_ui_unified_ShellLayout_AnimDuration"), 10);
var duration = parseInt(Parameters.get("_sap_ui_unified_ShellLayout_AnimDuration"));
if (!this._animation || (Device.browser.internet_explorer && Device.browser.version < 10)) {

@@ -473,0 +473,0 @@ duration = 0;

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -286,3 +286,3 @@ * @constructor

ShellOverlay.prototype._getAnimDurationThemeParam = function(sParam, bClearIfNotActive){
var val = parseInt(Parameters.get(sParam), 10);
var val = parseInt(Parameters.get(sParam));
if (!this._getAnimActive() && bClearIfNotActive) {

@@ -289,0 +289,0 @@ val = 0;

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

* @author SAP SE
* @version 1.60.2
* @version 1.61.0
*

@@ -228,5 +228,3 @@ * @constructor

var iHideDelay = parseInt(
Parameters.get("_sap_ui_unified_SplitContainer_AnimationDuration"),
10
);
Parameters.get("_sap_ui_unified_SplitContainer_AnimationDuration"));
// Maybe we could also allow "s"-values and then multiply everything below 20 with 1000...?

@@ -233,0 +231,0 @@

Sorry, the diff of this file is not supported yet

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

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

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

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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