@refinitiv-ui/phrasebook 7.1.0 → 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,12 @@
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
+
6
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)
7
13
 
8
14
  ### Features
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/phrasebook",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "description": "Collection of messages in EF components for translation",
5
5
  "author": "LSEG",
6
6
  "license": "Apache-2.0",
@@ -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",
@@ -135,5 +140,5 @@
135
140
  "dependencies": {
136
141
  "tslib": "^2.3.1"
137
142
  },
138
- "gitHead": "f0019ccc2f241a998c5e455b433c0e36720d5fe6"
143
+ "gitHead": "738cabbab4a311865cbacadc0d2a3b804b357cff"
139
144
  }