@ui5/create-webcomponents-package 0.0.0-1acdb5da5 → 0.0.0-1b5f0ec39
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 +24 -0
- package/package.json +1 -1
- package/template/src/themes/sap_horizon_dark/parameters-bundle.css +3 -0
- package/template/src/themes/sap_horizon_hcb/parameters-bundle.css +3 -0
- package/template/src/themes/sap_horizon_hcw/parameters-bundle.css +3 -0
- package/template/test/pages/index.html +5 -4
- package/template/src/themes/sap_belize_hcb/parameters-bundle.css +0 -3
- package/template/src/themes/sap_belize_hcw/parameters-bundle.css +0 -3
- /package/template/src/themes/{sap_belize → sap_horizon}/parameters-bundle.css +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.13.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.2...v1.13.0-rc.3) (2023-04-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.13.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.1...v1.13.0-rc.2) (2023-04-20)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [1.13.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.0...v1.13.0-rc.1) (2023-04-13)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
package/package.json
CHANGED
|
@@ -28,13 +28,14 @@
|
|
|
28
28
|
<li><a href="?sap-ui-theme=sap_fiori_3_dark">Fiori 3 Dark</a></li>
|
|
29
29
|
<li><a href="?sap-ui-theme=sap_fiori_3_hcb">Fiori 3 High Contrast Black</a></li>
|
|
30
30
|
<li><a href="?sap-ui-theme=sap_fiori_3_hcw">Fiori 3 High Contrast White</a></li>
|
|
31
|
-
<li><a href="?sap-ui-theme=
|
|
32
|
-
<li><a href="?sap-ui-theme=
|
|
33
|
-
<li><a href="?sap-ui-theme=
|
|
31
|
+
<li><a href="?sap-ui-theme=sap_horizon">Horizon</a></li>
|
|
32
|
+
<li><a href="?sap-ui-theme=sap_horizon_dark">Horizon Dark</a></li>
|
|
33
|
+
<li><a href="?sap-ui-theme=sap_horizon_hcb">Horizon High Contrast Black</a></li>
|
|
34
|
+
<li><a href="?sap-ui-theme=sap_horizon_hcw">Horizon High Contrast White</a></li>
|
|
34
35
|
</ul>
|
|
35
36
|
<br>
|
|
36
37
|
<span>or in the browser console, for example:</span>
|
|
37
|
-
<code>window['sap-ui-webcomponents-bundle'].configuration.setTheme("
|
|
38
|
+
<code>window['sap-ui-webcomponents-bundle'].configuration.setTheme("sap_horizon_hcb")</code>
|
|
38
39
|
|
|
39
40
|
<br><br>
|
|
40
41
|
|
|
File without changes
|