@ui5/create-webcomponents-package 2.6.3 → 2.7.0-rc.1
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,7 +3,7 @@
|
|
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
|
-
|
6
|
+
# [2.7.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.0...v2.7.0-rc.1) (2025-01-23)
|
7
7
|
|
8
8
|
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
9
9
|
|
@@ -11,6 +11,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
11
11
|
|
12
12
|
|
13
13
|
|
14
|
+
# [2.7.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2...v2.7.0-rc.0) (2025-01-16)
|
15
|
+
|
16
|
+
|
17
|
+
### Features
|
18
|
+
|
19
|
+
* **create-package:** generate jsx component template ([#10531](https://github.com/SAP/ui5-webcomponents/issues/10531)) ([dd2d45d](https://github.com/SAP/ui5-webcomponents/commit/dd2d45d4c3947f52773272f6a77be294f240d28f))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
14
25
|
## [2.6.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2-rc.0...v2.6.2) (2025-01-09)
|
15
26
|
|
16
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": "2.
|
3
|
+
"version": "2.7.0-rc.1",
|
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": "2f90ed3982de20cc411a1cda852ee98709b15e33"
|
28
28
|
}
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
|
2
2
|
import customElement from "@ui5/webcomponents-base/dist/decorators/customElement.js";
|
3
3
|
import property from "@ui5/webcomponents-base/dist/decorators/property.js";
|
4
|
-
import
|
5
|
-
import
|
4
|
+
import i18n from "@ui5/webcomponents-base/dist/decorators/i18n.js";
|
5
|
+
import jsxRenderer from "@ui5/webcomponents-base/dist/renderer/JsxRenderer.js";
|
6
6
|
import type I18nBundle from "@ui5/webcomponents-base/dist/i18nBundle.js";
|
7
7
|
|
8
8
|
// Template
|
9
|
-
import INIT_PACKAGE_VAR_CLASS_NAMETemplate from "./
|
9
|
+
import INIT_PACKAGE_VAR_CLASS_NAMETemplate from "./INIT_PACKAGE_VAR_CLASS_NAMETemplate.js";
|
10
10
|
|
11
11
|
// Styles
|
12
12
|
import INIT_PACKAGE_VAR_CLASS_NAMECss from "./generated/themes/INIT_PACKAGE_VAR_CLASS_NAME.css.js";
|
@@ -26,17 +26,14 @@ import { COUNT } from "./generated/i18n/i18n-defaults.js";
|
|
26
26
|
*/
|
27
27
|
@customElement({
|
28
28
|
tag: "INIT_PACKAGE_VAR_TAG",
|
29
|
-
renderer:
|
29
|
+
renderer: jsxRenderer,
|
30
30
|
styles: INIT_PACKAGE_VAR_CLASS_NAMECss,
|
31
31
|
template: INIT_PACKAGE_VAR_CLASS_NAMETemplate,
|
32
32
|
})
|
33
33
|
class INIT_PACKAGE_VAR_CLASS_NAME extends UI5Element {
|
34
|
+
@i18n("INIT_PACKAGE_VAR_NAME")
|
34
35
|
static i18nBundle: I18nBundle;
|
35
36
|
|
36
|
-
static async onDefine() {
|
37
|
-
INIT_PACKAGE_VAR_CLASS_NAME.i18nBundle = await getI18nBundle("INIT_PACKAGE_VAR_NAME");
|
38
|
-
}
|
39
|
-
|
40
37
|
/**
|
41
38
|
* Defines the component count.
|
42
39
|
* @default 0
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import type INIT_PACKAGE_VAR_CLASS_NAME from "./INIT_PACKAGE_VAR_CLASS_NAME.js";
|
2
|
+
|
3
|
+
export default function INIT_PACKAGE_VAR_CLASS_NAMETemplate(this: INIT_PACKAGE_VAR_CLASS_NAME) {
|
4
|
+
return (
|
5
|
+
<div class="root" onClick={this.onClick}>
|
6
|
+
{this.counterText} :: {this.count}
|
7
|
+
</div>
|
8
|
+
);
|
9
|
+
}
|