@ui5/webcomponents-localization 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 CHANGED
@@ -3,6 +3,22 @@
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
+ **Note:** Version bump only for package @ui5/webcomponents-localization
9
+
10
+
11
+
12
+
13
+
14
+ # [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)
15
+
16
+ **Note:** Version bump only for package @ui5/webcomponents-localization
17
+
18
+
19
+
20
+
21
+
6
22
  # [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
23
 
8
24
  **Note:** Version bump only for package @ui5/webcomponents-localization
@@ -1,4 +1,4 @@
1
- /// <reference types="openui5" />
1
+ /// <reference types="openui5" resolution-mode="require"/>
2
2
  import type DateFormatT from "sap/ui/core/format/DateFormat";
3
3
  declare const DateFormatWrapped: typeof DateFormatT;
4
4
  declare class DateFormat extends DateFormatWrapped {
@@ -1,4 +1,4 @@
1
- /// <reference types="openui5" />
1
+ /// <reference types="openui5" resolution-mode="require"/>
2
2
  import type LocaleDataOpenUI5T from "sap/ui/core/LocaleData";
3
3
  declare const LocaleDataWrapped: typeof LocaleDataOpenUI5T;
4
4
  declare class LocaleData extends LocaleDataWrapped {
@@ -1,4 +1,4 @@
1
- /// <reference types="openui5" />
1
+ /// <reference types="openui5" resolution-mode="require"/>
2
2
  import type CalendarType from "@ui5/webcomponents-base/dist/types/CalendarType.js";
3
3
  import UI5Date from "./UI5Date.js";
4
4
  import UniversalDate from "./UniversalDate.js";
@@ -1,4 +1,4 @@
1
- /// <reference types="openui5" />
1
+ /// <reference types="openui5" resolution-mode="require"/>
2
2
  import type UIDateT from "sap/ui/core/date/UI5Date";
3
3
  declare const UI5DateWrapped: typeof UIDateT;
4
4
  declare class UI5Date extends UI5DateWrapped {
@@ -2,9 +2,9 @@
2
2
  * OpenUI5 FormatSettings shim
3
3
  */
4
4
  declare const FormatSettings: {
5
- getFormatLocale: (lang?: string | undefined) => import("@ui5/webcomponents-base/dist/locale/Locale").default;
5
+ getFormatLocale: (lang?: string | undefined) => import("@ui5/webcomponents-base/dist/locale/Locale.js").default;
6
6
  getLegacyDateFormat: () => void;
7
7
  getCustomLocaleData: () => void;
8
- getLegacyDateCalendarCustomizing: typeof import("@ui5/webcomponents-base/dist/features/LegacyDateFormats").default.getLegacyDateCalendarCustomizing;
8
+ getLegacyDateCalendarCustomizing: typeof import("@ui5/webcomponents-base/dist/features/LegacyDateFormats.js").default.getLegacyDateCalendarCustomizing;
9
9
  };
10
10
  export default FormatSettings;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-localization",
3
- "version": "1.13.0-rc.3",
3
+ "version": "1.13.0",
4
4
  "description": "Localization for UI5 Web Components",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -29,14 +29,14 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "@openui5/sap.ui.core": "1.112.0",
32
- "@ui5/webcomponents-tools": "1.13.0-rc.3",
32
+ "@ui5/webcomponents-tools": "1.13.0",
33
33
  "chromedriver": "112.0.0",
34
34
  "mkdirp": "^1.0.4",
35
35
  "resolve": "^1.20.0"
36
36
  },
37
37
  "dependencies": {
38
38
  "@types/openui5": "^1.112.0",
39
- "@ui5/webcomponents-base": "1.13.0-rc.3"
39
+ "@ui5/webcomponents-base": "1.13.0"
40
40
  },
41
- "gitHead": "61c17ec60eb103e9b98d0acee1256be98430fbaf"
41
+ "gitHead": "c85ff70d47ba8f5e8c906066f2f4d36d432d2f6a"
42
42
  }
package/tsconfig.json CHANGED
@@ -9,6 +9,7 @@
9
9
  "sourceMap": true,
10
10
  "inlineSources": true,
11
11
  "strict": true,
12
- "moduleResolution": "node",
12
+ "module": "node16",
13
+ "moduleResolution": "node16",
13
14
  },
14
15
  }