@ui5/webcomponents-theming 1.13.0-rc.3 → 1.13.0
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 +19 -0
- package/css-vars-usage.json +12 -0
- package/package.json +4 -4
- package/tsconfig.json +2 -1
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.13.0](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.4...v1.13.0) (2023-05-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **create-webcomponents-package:** fix package creation issues with test and lint ([#6976](https://github.com/SAP/ui5-webcomponents/issues/6976)) ([dd70f3a](https://github.com/SAP/ui5-webcomponents/commit/dd70f3aa8ef70b592f1d4e0f3f9894c6280fb1bf))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [1.13.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.3...v1.13.0-rc.4) (2023-05-04)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @ui5/webcomponents-theming
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [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
26
|
|
|
8
27
|
**Note:** Version bump only for package @ui5/webcomponents-theming
|
package/css-vars-usage.json
CHANGED
|
@@ -218,6 +218,8 @@
|
|
|
218
218
|
"--sapCriticalTextColor",
|
|
219
219
|
"--sapElement_BorderCornerRadius",
|
|
220
220
|
"--sapElement_BorderWidth",
|
|
221
|
+
"--sapElement_Compact_Height",
|
|
222
|
+
"--sapElement_Height",
|
|
221
223
|
"--sapErrorBackground",
|
|
222
224
|
"--sapErrorBorderColor",
|
|
223
225
|
"--sapField_Active_BorderColor",
|
|
@@ -231,29 +233,39 @@
|
|
|
231
233
|
"--sapField_Hover_Background",
|
|
232
234
|
"--sapField_Hover_BackgroundStyle",
|
|
233
235
|
"--sapField_Hover_BorderColor",
|
|
236
|
+
"--sapField_Hover_InformationShadow",
|
|
237
|
+
"--sapField_Hover_InvalidShadow",
|
|
238
|
+
"--sapField_Hover_Shadow",
|
|
239
|
+
"--sapField_Hover_SuccessShadow",
|
|
240
|
+
"--sapField_Hover_WarningShadow",
|
|
234
241
|
"--sapField_HoverBorderColor",
|
|
235
242
|
"--sapField_InformationBackground",
|
|
236
243
|
"--sapField_InformationBackgroundStyle",
|
|
237
244
|
"--sapField_InformationBorderWidth",
|
|
238
245
|
"--sapField_InformationColor",
|
|
246
|
+
"--sapField_InformationShadow",
|
|
239
247
|
"--sapField_InvalidBackground",
|
|
240
248
|
"--sapField_InvalidBackgroundStyle",
|
|
241
249
|
"--sapField_InvalidBorderWidth",
|
|
242
250
|
"--sapField_InvalidColor",
|
|
251
|
+
"--sapField_InvalidShadow",
|
|
243
252
|
"--sapField_PlaceholderTextColor",
|
|
244
253
|
"--sapField_ReadOnly_Background",
|
|
245
254
|
"--sapField_ReadOnly_BackgroundStyle",
|
|
246
255
|
"--sapField_ReadOnly_BorderColor",
|
|
247
256
|
"--sapField_RequiredColor",
|
|
257
|
+
"--sapField_Shadow",
|
|
248
258
|
"--sapField_SuccessBackground",
|
|
249
259
|
"--sapField_SuccessBackgroundStyle",
|
|
250
260
|
"--sapField_SuccessBorderWidth",
|
|
251
261
|
"--sapField_SuccessColor",
|
|
262
|
+
"--sapField_SuccessShadow",
|
|
252
263
|
"--sapField_TextColor",
|
|
253
264
|
"--sapField_WarningBackground",
|
|
254
265
|
"--sapField_WarningBackgroundStyle",
|
|
255
266
|
"--sapField_WarningBorderWidth",
|
|
256
267
|
"--sapField_WarningColor",
|
|
268
|
+
"--sapField_WarningShadow",
|
|
257
269
|
"--sapFontBoldFamily",
|
|
258
270
|
"--sapFontFamily",
|
|
259
271
|
"--sapFontHeader1Size",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/webcomponents-theming",
|
|
3
|
-
"version": "1.13.0
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "UI5 Web Components: webcomponents.theming",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@sap-theming/theming-base-content": "11.3.2",
|
|
33
|
-
"@ui5/webcomponents-base": "1.13.0
|
|
33
|
+
"@ui5/webcomponents-base": "1.13.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@ui5/webcomponents-tools": "1.13.0
|
|
36
|
+
"@ui5/webcomponents-tools": "1.13.0",
|
|
37
37
|
"chromedriver": "112.0.0",
|
|
38
38
|
"cssnano": "^4.1.11",
|
|
39
39
|
"globby": "^13.1.1",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"resolve": "^1.20.0"
|
|
45
45
|
},
|
|
46
46
|
"resolutions": {},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "c85ff70d47ba8f5e8c906066f2f4d36d432d2f6a"
|
|
48
48
|
}
|