@ui5/webcomponents-tools 2.4.0 → 2.5.0-rc.0

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,22 @@
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
+ # [2.5.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.1-rc.0...v2.5.0-rc.0) (2024-11-14)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.4.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0...v2.4.1-rc.0) (2024-11-07)
15
+
16
+ **Note:** Version bump only for package @ui5/webcomponents-tools
17
+
18
+
19
+
20
+
21
+
6
22
  # [2.4.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.4...v2.4.0) (2024-11-03)
7
23
 
8
24
  **Note:** Version bump only for package @ui5/webcomponents-tools
package/lib/cem/event.mjs CHANGED
@@ -104,7 +104,7 @@ function processEvent(ts, event, classNode, moduleDoc) {
104
104
  result.description = description;
105
105
  result._ui5Cancelable = eventCancelable !== undefined ? eventCancelable : false;
106
106
  result._ui5allowPreventDefault = result._ui5Cancelable;
107
- result._ui5Bubbles = eventBubbles !== undefined ? eventBubbles : true;
107
+ result._ui5Bubbles = eventBubbles !== undefined ? eventBubbles : false;
108
108
 
109
109
  if (native) {
110
110
  result.type = { text: "Event" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "2.4.0",
3
+ "version": "2.5.0-rc.0",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -86,5 +86,5 @@
86
86
  "esbuild": "^0.19.9",
87
87
  "yargs": "^17.5.1"
88
88
  },
89
- "gitHead": "8a6837f0d865c6522ef7823118f2894072bb02de"
89
+ "gitHead": "cff55e270785bc2e83d4956c12a00e4ac0ed1665"
90
90
  }