Socket
Socket
Sign inDemoInstall

@ui5/webcomponents-base

Package Overview
Dependencies
Maintainers
5
Versions
484
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ui5/webcomponents-base - npm Package Compare versions

Comparing version 2.0.0-rc.1 to 2.0.0-rc.2

6

dist/generated/VersionInfo.js
const VersionInfo = {
version: "2.0.0-rc.1",
version: "2.0.0-rc.2",
major: 2,
minor: 0,
patch: 0,
suffix: "-rc.1",
suffix: "-rc.2",
isNext: false,
buildTime: 1712822792,
buildTime: 1713427628,
};
export default VersionInfo;
//# sourceMappingURL=VersionInfo.js.map

@@ -49,2 +49,3 @@ declare const isEnter: (event: KeyboardEvent) => boolean;

declare const isShow: (event: KeyboardEvent) => boolean;
declare const isF2: (event: KeyboardEvent) => boolean;
declare const isF4: (event: KeyboardEvent) => boolean;

@@ -62,2 +63,2 @@ declare const isF4Shift: (event: KeyboardEvent) => boolean;

declare const isColon: (event: KeyboardEvent) => boolean;
export { isEnter, isEnterShift, isSpace, isSpaceShift, isSpaceCtrl, isLeft, isRight, isUp, isDown, isLeftCtrl, isRightCtrl, isUpCtrl, isDownCtrl, isUpShift, isDownShift, isUpAlt, isDownAlt, isLeftShift, isRightShift, isLeftShiftCtrl, isRightShiftCtrl, isUpShiftCtrl, isDownShiftCtrl, isHome, isEnd, isPlus, isMinus, isHomeCtrl, isEndCtrl, isHomeShift, isEndShift, isEscape, isTabNext, isTabPrevious, isBackSpace, isDelete, isShow, isF4, isF4Shift, isF6Previous, isF6Next, isF7, isPageUp, isPageDown, isPageUpShift, isPageUpAlt, isPageDownShift, isPageDownAlt, isPageUpShiftCtrl, isPageDownShiftCtrl, isShift, isCtrlA, isCtrlV, isKeyA, isKeyP, isDeleteShift, isInsertShift, isInsertCtrl, isNumber, isColon, };
export { isEnter, isEnterShift, isSpace, isSpaceShift, isSpaceCtrl, isLeft, isRight, isUp, isDown, isLeftCtrl, isRightCtrl, isUpCtrl, isDownCtrl, isUpShift, isDownShift, isUpAlt, isDownAlt, isLeftShift, isRightShift, isLeftShiftCtrl, isRightShiftCtrl, isUpShiftCtrl, isDownShiftCtrl, isHome, isEnd, isPlus, isMinus, isHomeCtrl, isEndCtrl, isHomeShift, isEndShift, isEscape, isTabNext, isTabPrevious, isBackSpace, isDelete, isShow, isF2, isF4, isF4Shift, isF6Previous, isF6Next, isF7, isPageUp, isPageDown, isPageUpShift, isPageUpAlt, isPageDownShift, isPageDownAlt, isPageUpShiftCtrl, isPageDownShiftCtrl, isShift, isCtrlA, isCtrlV, isKeyA, isKeyP, isDeleteShift, isInsertShift, isInsertCtrl, isNumber, isColon, };

@@ -158,2 +158,5 @@ const KeyCodes = {

};
const isF2 = (event) => {
return event.key === "F2" && !hasModifierKeys(event);
};
const isF4 = (event) => {

@@ -181,3 +184,3 @@ return event.key === "F4" && !hasModifierKeys(event);

const isColon = (event) => ((event.key ? event.key === ":" : event.keyCode === KeyCodes.COLON) && checkModifierKeys(event, false, false, true));
export { isEnter, isEnterShift, isSpace, isSpaceShift, isSpaceCtrl, isLeft, isRight, isUp, isDown, isLeftCtrl, isRightCtrl, isUpCtrl, isDownCtrl, isUpShift, isDownShift, isUpAlt, isDownAlt, isLeftShift, isRightShift, isLeftShiftCtrl, isRightShiftCtrl, isUpShiftCtrl, isDownShiftCtrl, isHome, isEnd, isPlus, isMinus, isHomeCtrl, isEndCtrl, isHomeShift, isEndShift, isEscape, isTabNext, isTabPrevious, isBackSpace, isDelete, isShow, isF4, isF4Shift, isF6Previous, isF6Next, isF7, isPageUp, isPageDown, isPageUpShift, isPageUpAlt, isPageDownShift, isPageDownAlt, isPageUpShiftCtrl, isPageDownShiftCtrl, isShift, isCtrlA, isCtrlV, isKeyA, isKeyP, isDeleteShift, isInsertShift, isInsertCtrl, isNumber, isColon, };
export { isEnter, isEnterShift, isSpace, isSpaceShift, isSpaceCtrl, isLeft, isRight, isUp, isDown, isLeftCtrl, isRightCtrl, isUpCtrl, isDownCtrl, isUpShift, isDownShift, isUpAlt, isDownAlt, isLeftShift, isRightShift, isLeftShiftCtrl, isRightShiftCtrl, isUpShiftCtrl, isDownShiftCtrl, isHome, isEnd, isPlus, isMinus, isHomeCtrl, isEndCtrl, isHomeShift, isEndShift, isEscape, isTabNext, isTabPrevious, isBackSpace, isDelete, isShow, isF2, isF4, isF4Shift, isF6Previous, isF6Next, isF7, isPageUp, isPageDown, isPageUpShift, isPageUpAlt, isPageDownShift, isPageDownAlt, isPageUpShiftCtrl, isPageDownShiftCtrl, isShift, isCtrlA, isCtrlV, isKeyA, isKeyP, isDeleteShift, isInsertShift, isInsertCtrl, isNumber, isColon, };
//# sourceMappingURL=Keys.js.map

@@ -144,2 +144,3 @@ // eslint-disable-next-line import/no-extraneous-dependencies

}
this._domRefReadyPromise._deferredResolve();
cancelRender(this);

@@ -146,0 +147,0 @@ }

@@ -9,5 +9,6 @@ /**

const clamp = (val, min, max) => {
return Math.min(Math.max(val, min), max);
// handles case when max < min
return Math.min(Math.max(val, min), Math.max(min, max));
};
export default clamp;
//# sourceMappingURL=clamp.js.map
{
"name": "@ui5/webcomponents-base",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"description": "UI5 Web Components: webcomponents.base",

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

"@openui5/sap.ui.core": "1.120.5",
"@ui5/webcomponents-tools": "2.0.0-rc.1",
"@ui5/webcomponents-tools": "2.0.0-rc.2",
"chromedriver": "^122.0.6",

@@ -57,5 +57,6 @@ "clean-css": "^5.2.2",

"replace-in-file": "^6.3.5",
"resolve": "^1.20.0"
"resolve": "^1.20.0",
"touch": "^3.1.0"
},
"gitHead": "4594e9aa13dbb152e422c93126412c654357f43f"
"gitHead": "20d773668ac3ac397868d21593c3d54bc704391c"
}
{
"include": ["src/**/*", "src/global.d.ts"],
// ssr-dom is imported with bare specifier so that conditional exports are used, but this treats it as input and output
"exclude": ["src/ssr-dom*.d.ts"],
// ssr-dom is imported with bare specifier so that conditional exports are used, but this treats it as input and output, so ignore it
"exclude": ["src/ssr-dom.ts"],
"compilerOptions": {

@@ -6,0 +6,0 @@ "target": "ES2021",

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

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