@refinitiv-ui/i18n 7.1.0 → 7.1.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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
+ ## [7.1.2](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/i18n@7.1.1...@refinitiv-ui/i18n@7.1.2) (2024-01-02)
7
+
8
+ **Note:** Version bump only for package @refinitiv-ui/i18n
9
+
10
+ ## [7.1.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/i18n@7.1.0...@refinitiv-ui/i18n@7.1.1) (2023-12-12)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **i18n:** resolve import order issue on demo page ([#1050](https://github.com/Refinitiv/refinitiv-ui/issues/1050)) ([a9edde4](https://github.com/Refinitiv/refinitiv-ui/commit/a9edde45751e27af6eb22f9f961e540e71368d0d))
15
+
6
16
  # [7.1.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/i18n@7.0.5...@refinitiv-ui/i18n@7.1.0) (2023-10-31)
7
17
 
8
18
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/i18n",
3
- "version": "7.1.0",
3
+ "version": "7.1.2",
4
4
  "description": "i18n support for Web Components",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",
@@ -18,7 +18,7 @@
18
18
  "clean": "nx exec -- rm -rf lib tsconfig.tsbuildinfo",
19
19
  "lint": "eslint .",
20
20
  "lint:fix": "eslint . --fix",
21
- "start": "npm run build && concurrently \"npm run build:watch\" \"vite serve __demo__ --open --force\"",
21
+ "start": "npm run build && concurrently \"npm run build:watch\" \"vite __demo__ --open --force\"",
22
22
  "test": "npm run build && node ../../scripts/tests/run.js --package=i18n",
23
23
  "test:watch": "npm run test -- --watch",
24
24
  "prepack": "npm run version",
@@ -35,7 +35,8 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@refinitiv-ui/phrasebook": "^7.1.0",
38
- "@refinitiv-ui/test-helpers": "^7.1.0"
38
+ "@refinitiv-ui/test-helpers": "^7.1.0",
39
+ "benchmark": "^2.1.4"
39
40
  },
40
41
  "peerDependencies": {
41
42
  "@refinitiv-ui/phrasebook": "^7.1.0"
@@ -43,5 +44,5 @@
43
44
  "publishConfig": {
44
45
  "access": "public"
45
46
  },
46
- "gitHead": "f0019ccc2f241a998c5e455b433c0e36720d5fe6"
47
+ "gitHead": "5f0d82b53f13adc68c807db63fbe622d6e1e05c9"
47
48
  }