@refinitiv-ui/phrasebook 7.0.5 → 7.1.1

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,18 @@
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.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.1.0...@refinitiv-ui/phrasebook@7.1.1) (2024-02-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **datetime-picker:** cannot be used with label with aria-label, aria-labelledby and label ([#1079](https://github.com/Refinitiv/refinitiv-ui/issues/1079)) ([a2fad80](https://github.com/Refinitiv/refinitiv-ui/commit/a2fad801e99f6d8271e99e95822964b7987eec17)), closes [#1097](https://github.com/Refinitiv/refinitiv-ui/issues/1097)
11
+
12
+ # [7.1.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.5...@refinitiv-ui/phrasebook@7.1.0) (2023-10-31)
13
+
14
+ ### Features
15
+
16
+ - adding `type=module` to `package.json` ([#974](https://github.com/Refinitiv/refinitiv-ui/issues/974)) ([9bf21dc](https://github.com/Refinitiv/refinitiv-ui/commit/9bf21dc05cb7ed93e1d14e797c1bf6af85b659d3)), closes [#985](https://github.com/Refinitiv/refinitiv-ui/issues/985)
17
+
6
18
  ## [7.0.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.4...@refinitiv-ui/phrasebook@7.0.5) (2023-10-24)
7
19
 
8
20
  ### Bug Fixes
@@ -0,0 +1,5 @@
1
+ declare const translations: {
2
+ FROM: string;
3
+ TO: string;
4
+ };
5
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ FROM: 'Von',
4
+ TO: 'Bis'
5
+ };
6
+ Phrasebook.define('de', 'ef-datetime-picker', translations);
7
+ export default translations;
@@ -0,0 +1,5 @@
1
+ declare const translations: {
2
+ FROM: string;
3
+ TO: string;
4
+ };
5
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ FROM: 'From',
4
+ TO: 'To'
5
+ };
6
+ Phrasebook.define('en', 'ef-datetime-picker', translations);
7
+ export default translations;
@@ -0,0 +1,5 @@
1
+ declare const translations: {
2
+ FROM: string;
3
+ TO: string;
4
+ };
5
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ FROM: '開始',
4
+ TO: '終了'
5
+ };
6
+ Phrasebook.define('ja', 'ef-datetime-picker', translations);
7
+ export default translations;
@@ -0,0 +1,5 @@
1
+ declare const translations: {
2
+ FROM: string;
3
+ TO: string;
4
+ };
5
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ FROM: '从',
4
+ TO: '至'
5
+ };
6
+ Phrasebook.define('zh', 'ef-datetime-picker', translations);
7
+ export default translations;
@@ -0,0 +1,5 @@
1
+ declare const translations: {
2
+ FROM: string;
3
+ TO: string;
4
+ };
5
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ FROM: '從',
4
+ TO: '至'
5
+ };
6
+ Phrasebook.define('zh-Hant', 'ef-datetime-picker', translations);
7
+ export default translations;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/phrasebook",
3
- "version": "7.0.5",
4
- "type": "module",
3
+ "version": "7.1.1",
5
4
  "description": "Collection of messages in EF components for translation",
6
5
  "author": "LSEG",
7
6
  "license": "Apache-2.0",
8
7
  "main": "./lib/index.js",
9
8
  "module": "./lib/index.js",
9
+ "type": "module",
10
10
  "types": "./lib/index.d.ts",
11
11
  "repository": {
12
12
  "type": "git",
@@ -30,6 +30,7 @@
30
30
  "./locale/de/color-picker.js": "./lib/locale/de/color-picker.js",
31
31
  "./locale/de/combo-box.js": "./lib/locale/de/combo-box.js",
32
32
  "./locale/de/datetime-field.js": "./lib/locale/de/datetime-field.js",
33
+ "./locale/de/datetime-picker.js": "./lib/locale/de/datetime-picker.js",
33
34
  "./locale/de/dialog.js": "./lib/locale/de/dialog.js",
34
35
  "./locale/de/pagination.js": "./lib/locale/de/pagination.js",
35
36
  "./locale/de/password-field.js": "./lib/locale/de/password-field.js",
@@ -48,6 +49,7 @@
48
49
  "./locale/en/color-picker.js": "./lib/locale/en/color-picker.js",
49
50
  "./locale/en/combo-box.js": "./lib/locale/en/combo-box.js",
50
51
  "./locale/en/datetime-field.js": "./lib/locale/en/datetime-field.js",
52
+ "./locale/en/datetime-picker.js": "./lib/locale/en/datetime-picker.js",
51
53
  "./locale/en/dialog.js": "./lib/locale/en/dialog.js",
52
54
  "./locale/en/pagination.js": "./lib/locale/en/pagination.js",
53
55
  "./locale/en/password-field.js": "./lib/locale/en/password-field.js",
@@ -66,6 +68,7 @@
66
68
  "./locale/ja/color-picker.js": "./lib/locale/ja/color-picker.js",
67
69
  "./locale/ja/combo-box.js": "./lib/locale/ja/combo-box.js",
68
70
  "./locale/ja/datetime-field.js": "./lib/locale/ja/datetime-field.js",
71
+ "./locale/ja/datetime-picker.js": "./lib/locale/ja/datetime-picker.js",
69
72
  "./locale/ja/dialog.js": "./lib/locale/ja/dialog.js",
70
73
  "./locale/ja/pagination.js": "./lib/locale/ja/pagination.js",
71
74
  "./locale/ja/password-field.js": "./lib/locale/ja/password-field.js",
@@ -84,6 +87,7 @@
84
87
  "./locale/zh/color-picker.js": "./lib/locale/zh/color-picker.js",
85
88
  "./locale/zh/combo-box.js": "./lib/locale/zh/combo-box.js",
86
89
  "./locale/zh/datetime-field.js": "./lib/locale/zh/datetime-field.js",
90
+ "./locale/zh/datetime-picker.js": "./lib/locale/zh/datetime-picker.js",
87
91
  "./locale/zh/dialog.js": "./lib/locale/zh/dialog.js",
88
92
  "./locale/zh/pagination.js": "./lib/locale/zh/pagination.js",
89
93
  "./locale/zh/password-field.js": "./lib/locale/zh/password-field.js",
@@ -102,6 +106,7 @@
102
106
  "./locale/zh-hant/color-picker.js": "./lib/locale/zh-hant/color-picker.js",
103
107
  "./locale/zh-hant/combo-box.js": "./lib/locale/zh-hant/combo-box.js",
104
108
  "./locale/zh-hant/datetime-field.js": "./lib/locale/zh-hant/datetime-field.js",
109
+ "./locale/zh-hant/datetime-picker.js": "./lib/locale/zh-hant/datetime-picker.js",
105
110
  "./locale/zh-hant/dialog.js": "./lib/locale/zh-hant/dialog.js",
106
111
  "./locale/zh-hant/pagination.js": "./lib/locale/zh-hant/pagination.js",
107
112
  "./locale/zh-hant/password-field.js": "./lib/locale/zh-hant/password-field.js",
@@ -122,7 +127,7 @@
122
127
  "lint:fix": "eslint . --fix",
123
128
  "test": "npm run build && mocha __test__/**/*.test.js --require esm",
124
129
  "prepack": "npm run version",
125
- "version": "node ../../scripts/version/index.mjs"
130
+ "version": "node ../../scripts/version/index.js"
126
131
  },
127
132
  "devDependencies": {
128
133
  "chai": "^4.3.7",
@@ -135,5 +140,5 @@
135
140
  "dependencies": {
136
141
  "tslib": "^2.3.1"
137
142
  },
138
- "gitHead": "3844f684f73a3ef5f035dd567e4362add74825eb"
143
+ "gitHead": "738cabbab4a311865cbacadc0d2a3b804b357cff"
139
144
  }