@refinitiv-ui/elements 6.16.4 → 6.16.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/CHANGELOG.md +6 -0
- package/lib/datetime-picker/index.js +3 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
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
|
+
## [6.16.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.16.4...@refinitiv-ui/elements@6.16.5) (2024-05-20)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **datetime-picker:** fix changing format doesn't sync to input ([#1163](https://github.com/Refinitiv/refinitiv-ui/issues/1163)) ([377d1c1](https://github.com/Refinitiv/refinitiv-ui/commit/377d1c1bd81909ab95079a6b627e3cdeb1b81260))
|
|
11
|
+
|
|
6
12
|
## [6.16.4](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.16.3...@refinitiv-ui/elements@6.16.4) (2024-05-07)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
@@ -359,7 +359,9 @@ let DatetimePicker = class DatetimePicker extends FormFieldElement {
|
|
|
359
359
|
if (this.opened && !this.canOpenPopup) {
|
|
360
360
|
this.opened = false; /* this cannot be nor stopped nor listened */
|
|
361
361
|
}
|
|
362
|
-
if (changedProperties.has('_values') ||
|
|
362
|
+
if (changedProperties.has('_values') ||
|
|
363
|
+
changedProperties.has(TranslatePropertyKey) ||
|
|
364
|
+
changedProperties.has('format')) {
|
|
363
365
|
this.syncInputValues();
|
|
364
366
|
}
|
|
365
367
|
if (changedProperties.has('placeholder')) {
|
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '6.16.
|
|
1
|
+
export const VERSION = '6.16.5';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinitiv-ui/elements",
|
|
3
|
-
"version": "6.16.
|
|
3
|
+
"version": "6.16.5",
|
|
4
4
|
"description": "Element Framework Elements",
|
|
5
5
|
"author": "LSEG",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -370,5 +370,5 @@
|
|
|
370
370
|
"publishConfig": {
|
|
371
371
|
"access": "public"
|
|
372
372
|
},
|
|
373
|
-
"gitHead": "
|
|
373
|
+
"gitHead": "3c00d54e43bead9ed6ed224baac0ca27b4ab5ca0"
|
|
374
374
|
}
|