@ui5/create-webcomponents-package 1.22.0-rc.0 → 1.22.0-rc.2
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,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
|
+
# [1.22.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.1...v1.22.0-rc.2) (2024-01-25)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# [1.22.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.0...v1.22.0-rc.1) (2024-01-18)
|
15
|
+
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
|
19
|
+
* broken test page ([#8097](https://github.com/SAP/ui5-webcomponents/issues/8097)) ([6903367](https://github.com/SAP/ui5-webcomponents/commit/6903367c290b84490c74a6ef56b074aa0a2fc729))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
6
25
|
# [1.22.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0...v1.22.0-rc.0) (2024-01-11)
|
7
26
|
|
8
27
|
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/create-webcomponents-package",
|
3
|
-
"version": "1.22.0-rc.
|
3
|
+
"version": "1.22.0-rc.2",
|
4
4
|
"description": "UI5 Web Components: create package",
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
6
6
|
"license": "Apache-2.0",
|
@@ -24,5 +24,5 @@
|
|
24
24
|
"prompts": "^2.4.1",
|
25
25
|
"yargs": "^17.5.1"
|
26
26
|
},
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "7075f9a181e13ac1be2a319b2de876ace16dd564"
|
28
28
|
}
|
@@ -22,9 +22,7 @@ import { COUNT } from "./generated/i18n/i18n-defaults.js";
|
|
22
22
|
* The <code>INIT_PACKAGE_VAR_TAG</code> component is a demo component that displays some text.
|
23
23
|
*
|
24
24
|
* @constructor
|
25
|
-
* @
|
26
|
-
* @extends sap.ui.webc.base.UI5Element
|
27
|
-
* @tagname INIT_PACKAGE_VAR_TAG
|
25
|
+
* @extends UI5Element
|
28
26
|
* @public
|
29
27
|
*/
|
30
28
|
@customElement({
|
@@ -42,9 +40,8 @@ class INIT_PACKAGE_VAR_CLASS_NAME extends UI5Element {
|
|
42
40
|
|
43
41
|
/**
|
44
42
|
* Defines the component count.
|
45
|
-
* @
|
43
|
+
* @default 0
|
46
44
|
* @public
|
47
|
-
* @type { sap.ui.webc.base.types.Integer }
|
48
45
|
*/
|
49
46
|
@property({ validator: Integer, defaultValue: 0 })
|
50
47
|
count!: number;
|