@ui5/webcomponents-theming 1.9.3 → 1.10.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 CHANGED
@@ -3,14 +3,6 @@
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.9.3](https://github.com/SAP/ui5-webcomponents/compare/v1.9.2...v1.9.3) (2022-12-16)
7
-
8
- **Note:** Version bump only for package @ui5/webcomponents-theming
9
-
10
-
11
-
12
-
13
-
14
6
  ## [1.9.1](https://github.com/SAP/ui5-webcomponents/compare/v1.9.0...v1.9.1) (2022-11-10)
15
7
 
16
8
  **Note:** Version bump only for package @ui5/webcomponents-theming
@@ -322,6 +322,7 @@
322
322
  "--sapList_GroupHeaderBorderColor",
323
323
  "--sapList_HeaderBackground",
324
324
  "--sapList_HeaderBorderColor",
325
+ "--sapList_HeaderTextColor",
325
326
  "--sapList_Hover_Background",
326
327
  "--sapList_Hover_SelectionBackground",
327
328
  "--sapList_SelectionBackgroundColor",
@@ -0,0 +1 @@
1
+ import "./generated/json-imports/Themes-static.js";
@@ -1,2 +1,3 @@
1
1
  // The theming package provides theming assets only
2
2
  import "./generated/json-imports/Themes-static.js";
3
+ //# sourceMappingURL=Assets-static.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Assets-static.js","sourceRoot":"","sources":["../src/Assets-static.ts"],"names":[],"mappings":"AAAA,mDAAmD;AACnD,OAAO,2CAA2C,CAAC"}
@@ -0,0 +1 @@
1
+ import "./generated/json-imports/Themes.js";
package/dist/Assets.js CHANGED
@@ -1,2 +1,3 @@
1
1
  // The theming package provides theming assets only
2
2
  import "./generated/json-imports/Themes.js";
3
+ //# sourceMappingURL=Assets.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Assets.js","sourceRoot":"","sources":["../src/Assets.ts"],"names":[],"mappings":"AAAA,mDAAmD;AACnD,OAAO,oCAAoC,CAAC"}
@@ -19,8 +19,9 @@ module.exports = {
19
19
  scripts: {
20
20
  clean: "rimraf dist",
21
21
  build: {
22
- default: `nps clean build.src build.themes build.postcss build.jsonImports generateReport`,
22
+ default: `nps clean build.src build.typescript build.themes build.postcss build.jsonImports generateReport`,
23
23
  src: `copy-and-watch "src/**/*.js" dist/`,
24
+ typescript: "tsc",
24
25
  themes: {
25
26
  default: `nps build.themes.prepare ${buildThemesCommandsNames}`,
26
27
  ...buildThemesCommands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-theming",
3
- "version": "1.9.3",
3
+ "version": "1.10.0",
4
4
  "description": "UI5 Web Components: webcomponents.theming",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -29,11 +29,11 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@sap-theming/theming-base-content": "11.1.48",
32
- "@ui5/webcomponents-base": "1.9.3"
32
+ "@ui5/webcomponents-base": "1.10.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@ui5/webcomponents-tools": "1.9.3",
36
- "chromedriver": "106.0.1",
35
+ "@ui5/webcomponents-tools": "1.10.0",
36
+ "chromedriver": "108.0.0",
37
37
  "cssnano": "^4.1.11",
38
38
  "globby": "^13.1.1",
39
39
  "json-beautify": "^1.1.1",
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "include": ["src/**/*"],
3
+ "compilerOptions": {
4
+ "target": "ES2021",
5
+ // Generate d.ts files
6
+ "declaration": true,
7
+ "outDir": "dist",
8
+ "skipLibCheck": true,
9
+ "sourceMap": true,
10
+ "strict": true,
11
+ "moduleResolution": "node",
12
+ "experimentalDecorators": true,
13
+ },
14
+ }