@ui5/create-webcomponents-package 1.22.0-rc.0 → 1.22.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,17 @@
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.1](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.0...v1.22.0-rc.1) (2024-01-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * broken test page ([#8097](https://github.com/SAP/ui5-webcomponents/issues/8097)) ([6903367](https://github.com/SAP/ui5-webcomponents/commit/6903367c290b84490c74a6ef56b074aa0a2fc729))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.22.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0...v1.22.0-rc.0) (2024-01-11)
7
18
 
8
19
  **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.0",
3
+ "version": "1.22.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": "4cf0711a7e7a57b5b31453e8286f0a50ab4cb8d0"
27
+ "gitHead": "1a4ba450e7d222535ddaf4f1d3b0ff91b020bb2a"
28
28
  }
@@ -1 +1,6 @@
1
- <div @click="{{onClick}}">{{counterText}} :: {{count}}</div>
1
+ <div
2
+ class="root"
3
+ @click="{{onClick}}"
4
+ >
5
+ {{counterText}} :: {{count}}
6
+ </div>
@@ -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
- * @alias INIT_PACKAGE_VAR_NAMESPACE.INIT_PACKAGE_VAR_CLASS_NAME
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
- * @name INIT_PACKAGE_VAR_NAMESPACE.INIT_PACKAGE_VAR_CLASS_NAME.prototype.count
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;
@@ -1,4 +1,4 @@
1
- :host {
1
+ .root {
2
2
  display: inline-flex;
3
3
  align-items: center;
4
4
  justify-content: center;
@@ -13,4 +13,5 @@
13
13
  line-height: 3rem;
14
14
  font-size: 1.25rem;
15
15
  user-select: none;
16
+ cursor: pointer;
16
17
  }
@@ -16,7 +16,7 @@
16
16
  </script>
17
17
 
18
18
  <link rel="stylesheet" type="text/css" href="./css/index.css">
19
- <script src="%VITE_BUNDLE_PATH%" type="module"></script>
19
+ <script src="../../bundle.esm.js" type="module"></script>
20
20
  </head>
21
21
 
22
22
  <body>
@@ -2,6 +2,7 @@
2
2
  "include": ["src/**/*", "global.d.ts"],
3
3
  "compilerOptions": {
4
4
  "target": "ES2021",
5
+ "lib": ["DOM", "DOM.Iterable", "ES2023"],
5
6
  // Generate d.ts files
6
7
  "declaration": true,
7
8
  "outDir": "dist",