@ui5/webcomponents-tools 1.24.20 → 1.24.21

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.24.21](https://github.com/SAP/ui5-webcomponents/compare/v1.24.20...v1.24.21) (2025-05-07)
7
+
8
+
9
+ ### Features
10
+
11
+ * **ui5-button:** provide focus support for mobile ([#11236](https://github.com/SAP/ui5-webcomponents/issues/11236)) ([d2ec2b0](https://github.com/SAP/ui5-webcomponents/commit/d2ec2b0c0e8cbd759ccc9305f42ef4dea23f542d)), closes [#11024](https://github.com/SAP/ui5-webcomponents/issues/11024) [#8414](https://github.com/SAP/ui5-webcomponents/issues/8414)
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.24.20](https://github.com/SAP/ui5-webcomponents/compare/v1.24.19...v1.24.20) (2025-04-08)
7
18
 
8
19
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -236,6 +236,12 @@ exports.config = {
236
236
  }, this, attrName);
237
237
  }, true);
238
238
 
239
+ await browser.addCommand("matches", async function(selector) {
240
+ return browser.executeAsync((elem, selector, done) => {
241
+ done(elem.matches(selector));
242
+ }, this, selector);
243
+ }, true);
244
+
239
245
  await browser.addCommand("getStaticAreaItemClassName", async function(selector) {
240
246
  return browser.executeAsync(async (selector, done) => {
241
247
  const staticAreaItem = await document.querySelector(selector).getStaticAreaItemDomRef();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "1.24.20",
3
+ "version": "1.24.21",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -81,5 +81,5 @@
81
81
  "esbuild": "^0.19.9",
82
82
  "yargs": "^17.5.1"
83
83
  },
84
- "gitHead": "7495ce7a9df738d6d9c36e3a2e30ed01d6c95d41"
84
+ "gitHead": "4e80dd1d1730ae4d1e32a636826bdfca9885cc64"
85
85
  }