@ui5/webcomponents-icons 1.13.0-rc.4 → 1.13.0-rc.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-icons",
3
- "version": "1.13.0-rc.4",
3
+ "version": "1.13.0-rc.5",
4
4
  "description": "UI5 Web Components: webcomponents.SAP-icons",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -27,9 +27,10 @@
27
27
  "directory": "packages/icons"
28
28
  },
29
29
  "dependencies": {
30
- "@ui5/webcomponents-base": "1.13.0-rc.4"
30
+ "@ui5/webcomponents-base": "1.13.0-rc.5"
31
31
  },
32
32
  "devDependencies": {
33
- "@ui5/webcomponents-tools": "1.13.0-rc.4"
34
- }
33
+ "@ui5/webcomponents-tools": "1.13.0-rc.5"
34
+ },
35
+ "gitHead": "b2b113b86174b3200253da114b1435b024fe0c6a"
35
36
  }
package/tsconfig.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
- "include": ["src/**/*", "global.d.ts"],
2
+ "include": ["src/**/*"],
3
3
  "compilerOptions": {
4
4
  "target": "es2022",
5
- "module": "es2022",
6
5
  // Generate d.ts files
7
6
  "declaration": true,
8
7
  "outDir": "dist",
@@ -10,6 +9,8 @@
10
9
  "sourceMap": true,
11
10
  "inlineSources": true,
12
11
  "strict": true,
13
- "moduleResolution": "node",
12
+ "module": "node16",
13
+ "moduleResolution": "node16",
14
+ "resolveJsonModule": true,
14
15
  },
15
16
  }
package/global.d.ts DELETED
@@ -1,15 +0,0 @@
1
- import { ColectionData } from "@ui5/webcomponents-base/dist/asset-registries/Icons.js";
2
-
3
- export {};
4
-
5
- declare global {
6
- module "*generated/assets/v4/SAP-icons.json" {
7
- const content: ColectionData;
8
- export default content;
9
- }
10
-
11
- module "*generated/assets/v5/SAP-icons.json" {
12
- const content: ColectionData;
13
- export default content;
14
- }
15
- }