@ui5/webcomponents-tools 2.11.0-rc.3 → 2.11.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 +19 -0
- package/lib/create-illustrations/index.js +19 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,25 @@
|
|
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.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/webcomponents-tools
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# [2.11.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.3...v2.11.0-rc.4) (2025-06-05)
|
15
|
+
|
16
|
+
|
17
|
+
### Features
|
18
|
+
|
19
|
+
* **ui5-illustrated-message:** added new illustration types ([#11560](https://github.com/SAP/ui5-webcomponents/issues/11560)) ([5517e2c](https://github.com/SAP/ui5-webcomponents/commit/5517e2c84add4d88077e8dda7c82641eb672d7ee))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
6
25
|
# [2.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.2...v2.11.0-rc.3) (2025-05-29)
|
7
26
|
|
8
27
|
|
@@ -20,7 +20,15 @@ const generate = async () => {
|
|
20
20
|
SuccessScreen: "SuccessScreen",
|
21
21
|
NoMail: "NoMail",
|
22
22
|
NoSavedItems: "NoSavedItems",
|
23
|
-
NoTasks: "NoTasks"
|
23
|
+
NoTasks: "NoTasks",
|
24
|
+
NoDimensionsSet: "NoDimensionsSet",
|
25
|
+
AddPeople: "AddPeople",
|
26
|
+
AddColumn: "AddColumn",
|
27
|
+
SortColumn: "SortColumn",
|
28
|
+
FilterTable: "FilterTable",
|
29
|
+
ResizeColumn: "ResizeColumn",
|
30
|
+
GroupTable: "GroupTable",
|
31
|
+
UploadCollection: "UploadCollection"
|
24
32
|
};
|
25
33
|
|
26
34
|
const FALLBACK_TEXTS = {
|
@@ -47,6 +55,16 @@ const generate = async () => {
|
|
47
55
|
SimpleNotFoundMagnifier: ORIGINAL_TEXTS.NoSearchResults,
|
48
56
|
SimpleReload: ORIGINAL_TEXTS.UnableToLoad,
|
49
57
|
SimpleTask: ORIGINAL_TEXTS.NoTasks,
|
58
|
+
NoChartData: ORIGINAL_TEXTS.NoDimensionsSet,
|
59
|
+
AddingColumns: ORIGINAL_TEXTS.AddColumn,
|
60
|
+
SortingColumns: ORIGINAL_TEXTS.SortColumn,
|
61
|
+
FilteringColumns: ORIGINAL_TEXTS.FilterTable,
|
62
|
+
ResizingColumns: ORIGINAL_TEXTS.ResizeColumn,
|
63
|
+
GroupingColumns: ORIGINAL_TEXTS.GroupTable,
|
64
|
+
AddPeopleToCalendar: ORIGINAL_TEXTS.AddPeople,
|
65
|
+
DragFilesToUpload: ORIGINAL_TEXTS.UploadCollection,
|
66
|
+
KeyTask: ORIGINAL_TEXTS.SuccessScreen,
|
67
|
+
ReceiveAppreciation: ORIGINAL_TEXTS.BalloonSky,
|
50
68
|
SuccessBalloon: ORIGINAL_TEXTS.BalloonSky,
|
51
69
|
SuccessCheckMark: ORIGINAL_TEXTS.SuccessScreen,
|
52
70
|
SuccessHighFive: ORIGINAL_TEXTS.BalloonSky
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/webcomponents-tools",
|
3
|
-
"version": "2.11.0
|
3
|
+
"version": "2.11.0",
|
4
4
|
"description": "UI5 Web Components: webcomponents.tools",
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
6
6
|
"license": "Apache-2.0",
|
@@ -82,5 +82,5 @@
|
|
82
82
|
"esbuild": "^0.25.0",
|
83
83
|
"yargs": "^17.5.1"
|
84
84
|
},
|
85
|
-
"gitHead": "
|
85
|
+
"gitHead": "a768710e9fa722b88e495e9aea1964764af5b985"
|
86
86
|
}
|