@ui5/create-webcomponents-package 1.11.0 → 1.12.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,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
|
+
# [1.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.0...v1.12.0-rc.1) (2023-03-16)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# [1.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0...v1.12.0-rc.0) (2023-03-09)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
6
22
|
# [1.11.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.4...v1.11.0) (2023-03-06)
|
7
23
|
|
8
24
|
**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.
|
3
|
+
"version": "1.12.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": "d9d5077df87afcda0589596174767ef5d512bcf1"
|
28
28
|
}
|
@@ -25,22 +25,15 @@ import { PLEASE_WAIT } from "./generated/i18n/i18n-defaults.js";
|
|
25
25
|
* @tagname INIT_PACKAGE_VAR_TAG
|
26
26
|
* @public
|
27
27
|
*/
|
28
|
-
@customElement(
|
28
|
+
@customElement({
|
29
|
+
tag: "INIT_PACKAGE_VAR_TAG",
|
30
|
+
renderer: litRender,
|
31
|
+
styles: INIT_PACKAGE_VAR_CLASS_NAMECss,
|
32
|
+
template: INIT_PACKAGE_VAR_CLASS_NAMETemplate,
|
33
|
+
})
|
29
34
|
class INIT_PACKAGE_VAR_CLASS_NAME extends UI5Element {
|
30
35
|
static i18nBundle: I18nBundle;
|
31
36
|
|
32
|
-
static get render() {
|
33
|
-
return litRender;
|
34
|
-
}
|
35
|
-
|
36
|
-
static get template() {
|
37
|
-
return INIT_PACKAGE_VAR_CLASS_NAMETemplate;
|
38
|
-
}
|
39
|
-
|
40
|
-
static get styles() {
|
41
|
-
return INIT_PACKAGE_VAR_CLASS_NAMECss;
|
42
|
-
}
|
43
|
-
|
44
37
|
static async onDefine() {
|
45
38
|
INIT_PACKAGE_VAR_CLASS_NAME.i18nBundle = await getI18nBundle("INIT_PACKAGE_VAR_NAME");
|
46
39
|
}
|
@@ -1,7 +1,9 @@
|
|
1
1
|
const assert = require("assert");
|
2
2
|
|
3
3
|
describe("INIT_PACKAGE_VAR_TAG rendering", async () => {
|
4
|
-
|
4
|
+
before(async () => {
|
5
|
+
await browser.url("test/pages/index.html");
|
6
|
+
});
|
5
7
|
|
6
8
|
it("tests if web component is correctly rendered", async () => {
|
7
9
|
|