@refinitiv-ui/elements 6.0.3 → 6.0.4

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,19 @@
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.0.4](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.0.3...@refinitiv-ui/elements@6.0.4) (2022-08-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **calendar:** day cell selected style not work with disabled state ([#410](https://github.com/Refinitiv/refinitiv-ui/issues/410)) ([1d9c931](https://github.com/Refinitiv/refinitiv-ui/commit/1d9c931b4d625b93c6fd60b780060ff2f03d9fc9))
12
+ * **interactive-chart:** show dash text when legend hided ([#402](https://github.com/Refinitiv/refinitiv-ui/issues/402)) ([93631ca](https://github.com/Refinitiv/refinitiv-ui/commit/93631cac4db0623f05c333b53f67728ace953039))
13
+ * **tab-bar:** notify value change event on pressing an arrow key ([#398](https://github.com/Refinitiv/refinitiv-ui/issues/398)) ([e55d152](https://github.com/Refinitiv/refinitiv-ui/commit/e55d152491b97c8763dc628ef7d1c013e4c3f01a))
14
+
15
+
16
+
17
+
18
+
6
19
  ## [6.0.3](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.0.2...@refinitiv-ui/elements@6.0.3) (2022-07-20)
7
20
 
8
21
  **Note:** Version bump only for package @refinitiv-ui/elements
@@ -156,7 +156,7 @@ let Calendar = class Calendar extends ControlElement {
156
156
  [part~=cell-content]:not([tabindex]) {
157
157
  pointer-events: none;
158
158
  }
159
- [part~=selection] {
159
+ [part~=selectable] {
160
160
  cursor: pointer;
161
161
  }
162
162
  `;
@@ -307,7 +307,7 @@ let Calendar = class Calendar extends ControlElement {
307
307
  * @returns button HTML date button element or null
308
308
  */
309
309
  getDateButtonByIndex(index) {
310
- const elements = Array.from(this.renderRoot.querySelectorAll('[part~=cell] > [part~=selection]'));
310
+ const elements = Array.from(this.renderRoot.querySelectorAll('[part~=cell] > [part~=selectable]'));
311
311
  return elements.find((element) => this.isDateButton(element) && String(element.index) === String(index));
312
312
  }
313
313
  /**
@@ -315,7 +315,7 @@ let Calendar = class Calendar extends ControlElement {
315
315
  * @returns button HTML date button element or null
316
316
  */
317
317
  get activeDateButton() {
318
- return this.renderRoot.querySelector('[part~=cell][active] > [part~=selection]');
318
+ return this.renderRoot.querySelector('[part~=cell][active] > [part~=selectable]');
319
319
  }
320
320
  /**
321
321
  * Return true if passed target is HTML
@@ -1118,7 +1118,8 @@ let Calendar = class Calendar extends ControlElement {
1118
1118
  * @returns template result
1119
1119
  */
1120
1120
  renderCell(cell) {
1121
- const isSelectable = cell.value !== undefined && !cell.disabled;
1121
+ const isSelection = cell.value !== undefined;
1122
+ const isSelectable = isSelection && !cell.disabled;
1122
1123
  return html `<div
1123
1124
  role="gridcell"
1124
1125
  part="cell ${cell.view}"
@@ -1140,7 +1141,7 @@ let Calendar = class Calendar extends ControlElement {
1140
1141
  value: parse(cell.value),
1141
1142
  view: this.renderView
1142
1143
  }) : undefined)}"
1143
- part="cell-content${isSelectable ? ' selection' : ''}"
1144
+ part="cell-content${isSelection ? ' selection' : ''}${isSelectable ? ' selectable' : ''}"
1144
1145
  .value=${cell.value}
1145
1146
  .index=${cell.index}>${cell.text}</div>
1146
1147
  </div>`;
@@ -1,3 +1,3 @@
1
1
  import '@refinitiv-ui/elements/button/themes/halo/dark';
2
2
 
3
- elf.customStyles.define('ef-calendar', ':host{font-style:normal;font-variant:normal;font-weight:400;line-height:normal;text-align:left;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;outline:0;font-size:12rem;color:#ccc;min-width:196px;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:#262626;padding:4px 3px}:host [part=navigation]{padding-bottom:3px}:host [part=btn-next],:host [part=btn-prev],:host [part=btn-view]{margin:0}:host [part=btn-view]{background:0 0;margin-left:16px;border:none;color:inherit;padding:0}:host [part=btn-view]:hover,:host [part=btn-view][focused=visible]{opacity:.8}:host [part=table]{width:100%;background:#262626}:host [part~=row]:not(:first-of-type) [part~=cell] [part~=cell-content]{top:1px}:host [part~=day-name-row]{background-color:#333}:host [part~=cell][disabled]{opacity:.4}:host [part~=cell][today]{color:#fff}:host [part~=cell][today] [part~=selection]{background:#404040}:host [part~=cell]:not([selected]):not([range]):not([disabled])[idle] [part~=selection]{opacity:.6}:host [part~=cell]:not([today]):not([range]) [part~=selection]:hover{color:#fff}:host [part~=cell]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([today]):not([range]):not(:active) [part~=selection]:hover,:host [part~=cell][today][selected] [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]) [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range]:not(:active) [part~=selection]:hover,:host [part~=cell][selected]:not(:active) [part~=selection]:hover,:host [part~=cell][today]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell][range]:active [part~=selection],:host [part~=cell][selected]:active [part~=selection],:host [part~=cell][today]:active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range] [part~=selection]{background:rgba(51,75,255,.2)}:host [part~=cell][range][today]{color:#fff}:host [part~=cell][selected]{color:#fff}:host [part~=cell][selected] [part~=selection]{background:#334bff}:host [part~=cell]:not(:first-of-type) [part~=cell-content]{left:1px}:host [part~=day-name]{color:#999;font-weight:600}:host [part~=day-name] [part~=cell-content]{background-color:#1a1a1a}:host [part~=cell-content]{background:#0d0d0d;top:0;bottom:0;right:0;left:0}:host [part~=selection]{outline:0;border:1px solid #0d0d0d}:host([focused=visible]) [part~=cell] [part~=selection]:focus{outline:#1429bd solid 1px}:host([disabled]){opacity:.4}');
3
+ elf.customStyles.define('ef-calendar', ':host{font-style:normal;font-variant:normal;font-weight:400;line-height:normal;text-align:left;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;outline:0;font-size:12rem;color:#ccc;min-width:196px;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:#262626;padding:4px 3px}:host [part=navigation]{padding-bottom:3px}:host [part=btn-next],:host [part=btn-prev],:host [part=btn-view]{margin:0}:host [part=btn-view]{background:0 0;margin-left:16px;border:none;color:inherit;padding:0}:host [part=btn-view]:hover,:host [part=btn-view][focused=visible]{opacity:.8}:host [part=table]{width:100%;background:#262626}:host [part~=row]:not(:first-of-type) [part~=cell] [part~=cell-content]{top:1px}:host [part~=day-name-row]{background-color:#333}:host [part~=cell][disabled]{opacity:.4}:host [part~=cell][today]{color:#fff}:host [part~=cell][today] [part~=selection]{background:#404040}:host [part~=cell]:not([selected]):not([range]):not([disabled])[idle] [part~=selection]{opacity:.6}:host [part~=cell]:not([today]):not([range]) [part~=selection]:hover{color:#fff}:host [part~=cell]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([today]):not([range]):not(:active) [part~=selection]:hover,:host [part~=cell][today][selected] [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]) [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):not([disabled]):active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range]:not(:active) [part~=selection]:hover,:host [part~=cell][selected]:not(:active) [part~=selection]:hover,:host [part~=cell][today]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell][range]:not([disabled]):active [part~=selection],:host [part~=cell][selected]:not([disabled]):active [part~=selection],:host [part~=cell][today]:not([disabled]):active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range] [part~=selection]{background:rgba(51,75,255,.2)}:host [part~=cell][range][today]{color:#fff}:host [part~=cell][selected]{color:#fff}:host [part~=cell][selected] [part~=selection]{background:#334bff}:host [part~=cell]:not(:first-of-type) [part~=cell-content]{left:1px}:host [part~=day-name]{color:#999;font-weight:600}:host [part~=day-name] [part~=cell-content]{background-color:#1a1a1a}:host [part~=cell-content]{background:#0d0d0d;top:0;bottom:0;right:0;left:0}:host [part~=selection]{outline:0;border:1px solid #0d0d0d}:host([focused=visible]) [part~=cell] [part~=selection]:focus{outline:#1429bd solid 1px}:host([disabled]){opacity:.4}');
@@ -1,3 +1,3 @@
1
1
  import '@refinitiv-ui/elements/button/themes/halo/light';
2
2
 
3
- elf.customStyles.define('ef-calendar', ':host{font-style:normal;font-variant:normal;font-weight:400;line-height:normal;text-align:left;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;outline:0;font-size:12rem;color:#0d0d0d;min-width:196px;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:#f2f2f2;padding:4px 3px}:host [part=navigation]{padding-bottom:3px}:host [part=btn-next],:host [part=btn-prev],:host [part=btn-view]{margin:0}:host [part=btn-next]:not(:hover):not(:focus):not(:active),:host [part=btn-prev]:not(:hover):not(:focus):not(:active){color:#595959}:host [part=btn-view]{background:0 0;margin-left:16px;border:none;color:inherit;padding:0}:host [part=btn-view]:hover,:host [part=btn-view][focused=visible]{opacity:.8}:host [part=table]{width:100%;background:#e6e6e6}:host [part~=row]:not(:first-of-type) [part~=cell] [part~=cell-content]{top:1px}:host [part~=day-name-row]{background-color:#e6e6e6}:host [part~=cell][disabled]{opacity:.4}:host [part~=cell][today]{color:#0d0d0d}:host [part~=cell][today] [part~=selection]{background:#d9d9d9}:host [part~=cell]:not([selected]):not([range]):not([disabled])[idle] [part~=selection]{opacity:.6}:host [part~=cell]:not([today]):not([range]) [part~=selection]:hover{color:#fff}:host [part~=cell]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([today]):not([range]):not(:active) [part~=selection]:hover,:host [part~=cell][today][selected] [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]) [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range]:not(:active) [part~=selection]:hover,:host [part~=cell][selected]:not(:active) [part~=selection]:hover,:host [part~=cell][today]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell][range]:active [part~=selection],:host [part~=cell][selected]:active [part~=selection],:host [part~=cell][today]:active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range] [part~=selection]{background:rgba(51,75,255,.2)}:host [part~=cell][range][today]{color:#fff}:host [part~=cell][selected]{color:#fff}:host [part~=cell][selected] [part~=selection]{background:#334bff}:host [part~=cell]:not(:first-of-type) [part~=cell-content]{left:1px}:host [part~=day-name]{color:#737373;font-weight:600}:host [part~=day-name] [part~=cell-content]{background-color:#fafafa}:host [part~=cell-content]{background:#fff;top:0;bottom:0;right:0;left:0}:host [part~=selection]{outline:0;border:1px solid #fff}:host([focused=visible]) [part~=cell] [part~=selection]:focus{outline:#1429bd solid 1px}:host([disabled]){opacity:.4}');
3
+ elf.customStyles.define('ef-calendar', ':host{font-style:normal;font-variant:normal;font-weight:400;line-height:normal;text-align:left;text-indent:0;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;outline:0;font-size:12rem;color:#0d0d0d;min-width:196px;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:#f2f2f2;padding:4px 3px}:host [part=navigation]{padding-bottom:3px}:host [part=btn-next],:host [part=btn-prev],:host [part=btn-view]{margin:0}:host [part=btn-next]:not(:hover):not(:focus):not(:active),:host [part=btn-prev]:not(:hover):not(:focus):not(:active){color:#595959}:host [part=btn-view]{background:0 0;margin-left:16px;border:none;color:inherit;padding:0}:host [part=btn-view]:hover,:host [part=btn-view][focused=visible]{opacity:.8}:host [part=table]{width:100%;background:#e6e6e6}:host [part~=row]:not(:first-of-type) [part~=cell] [part~=cell-content]{top:1px}:host [part~=day-name-row]{background-color:#e6e6e6}:host [part~=cell][disabled]{opacity:.4}:host [part~=cell][today]{color:#0d0d0d}:host [part~=cell][today] [part~=selection]{background:#d9d9d9}:host [part~=cell]:not([selected]):not([range]):not([disabled])[idle] [part~=selection]{opacity:.6}:host [part~=cell]:not([today]):not([range]) [part~=selection]:hover{color:#fff}:host [part~=cell]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([today]):not([range]):not(:active) [part~=selection]:hover,:host [part~=cell][today][selected] [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]) [part~=selection]:hover{background:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell]:not([selected]):not([range]):not([today]):not([disabled]):active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range]:not(:active) [part~=selection]:hover,:host [part~=cell][selected]:not(:active) [part~=selection]:hover,:host [part~=cell][today]:not(:active) [part~=selection]:hover{border-color:#1429bd}:host [part~=cell][range]:not([disabled]):active [part~=selection],:host [part~=cell][selected]:not([disabled]):active [part~=selection],:host [part~=cell][today]:not([disabled]):active [part~=selection]{color:#fff;background-color:#0f1e8a}:host [part~=cell][range] [part~=selection]{background:rgba(51,75,255,.2)}:host [part~=cell][range][today]{color:#fff}:host [part~=cell][selected]{color:#fff}:host [part~=cell][selected] [part~=selection]{background:#334bff}:host [part~=cell]:not(:first-of-type) [part~=cell-content]{left:1px}:host [part~=day-name]{color:#737373;font-weight:600}:host [part~=day-name] [part~=cell-content]{background-color:#fafafa}:host [part~=cell-content]{background:#fff;top:0;bottom:0;right:0;left:0}:host [part~=selection]{outline:0;border:1px solid #fff}:host([focused=visible]) [part~=cell] [part~=selection]:focus{outline:#1429bd solid 1px}:host([disabled]){opacity:.4}');
@@ -12,6 +12,7 @@ import { LegendStyle } from './helpers/types.js';
12
12
  import { merge } from './helpers/merge.js';
13
13
  const NOT_AVAILABLE_DATA = 'N/A';
14
14
  const NO_DATA_POINT = '--';
15
+ const HIDE_DATA_POINT = '';
15
16
  /**
16
17
  * A charting component that allows you to create several use cases of financial chart.
17
18
  * By lightweight-charts library.
@@ -668,7 +669,7 @@ let InteractiveChart = InteractiveChart_1 = class InteractiveChart extends Respo
668
669
  }
669
670
  // when there's no data point in the series object.
670
671
  else if (!eventMove?.seriesPrices.get(this.seriesList[idx]) && eventMove?.time) {
671
- value = NO_DATA_POINT;
672
+ value = symbol ? NO_DATA_POINT : HIDE_DATA_POINT;
672
673
  this.isCrosshairVisible = true;
673
674
  this.hasDataPoint = false;
674
675
  }
@@ -763,7 +764,7 @@ let InteractiveChart = InteractiveChart_1 = class InteractiveChart extends Respo
763
764
  /**
764
765
  * Create a new span OHLC after displaying (--) or (N/A)
765
766
  */
766
- if (spanElem.textContent === NOT_AVAILABLE_DATA || spanElem.textContent === NO_DATA_POINT) {
767
+ if (spanElem.textContent === NOT_AVAILABLE_DATA || spanElem.textContent === NO_DATA_POINT || spanElem.textContent === HIDE_DATA_POINT) {
767
768
  rowLegend[index].removeChild(spanElem);
768
769
  this.createSpanOHLC(rowLegend[index], rowData, priceColor);
769
770
  }
@@ -800,7 +801,7 @@ let InteractiveChart = InteractiveChart_1 = class InteractiveChart extends Respo
800
801
  createTextPrice(rowLegend, price, priceColor, index) {
801
802
  const formatter = this.internalConfig.series[index].legendPriceFormatter;
802
803
  // Formats legend only when formatter and data point are provided
803
- const formattedPrice = !!formatter && price !== NO_DATA_POINT ? formatter(price) : price;
804
+ const formattedPrice = !!formatter && price !== NO_DATA_POINT && price !== HIDE_DATA_POINT ? formatter(price) : price;
804
805
  // Create text price after chart has rendered
805
806
  if (rowLegend instanceof HTMLElement) {
806
807
  rowLegend.setAttribute('data-color', priceColor);
@@ -73,7 +73,13 @@ export declare class TabBar extends BasicElement {
73
73
  * @param value Value to check
74
74
  * @returns true if incoming value matches one of the existing tabs
75
75
  */
76
- private isValidValue;
76
+ protected isValidValue(value: string): boolean;
77
+ /**
78
+ * On *user-interaction* set the value and notify.
79
+ * @param value New value
80
+ * @returns {void}
81
+ */
82
+ protected setValueAndNotify(value: string): void;
77
83
  /**
78
84
  * When the slot changes, set the level, toggle the scroll button, and set the value
79
85
  * @returns {void}
@@ -131,6 +131,17 @@ let TabBar = class TabBar extends BasicElement {
131
131
  const tabList = this.getFocusableTabs();
132
132
  return tabList.some(tab => this.getTabValue(tab) === value);
133
133
  }
134
+ /**
135
+ * On *user-interaction* set the value and notify.
136
+ * @param value New value
137
+ * @returns {void}
138
+ */
139
+ setValueAndNotify(value) {
140
+ if (this.value !== value) {
141
+ this.value = value;
142
+ this.notifyPropertyChange('value', value);
143
+ }
144
+ }
134
145
  /**
135
146
  * When the slot changes, set the level, toggle the scroll button, and set the value
136
147
  * @returns {void}
@@ -183,10 +194,7 @@ let TabBar = class TabBar extends BasicElement {
183
194
  const element = event.target;
184
195
  if (element instanceof Tab) {
185
196
  const tabValue = this.getTabValue(element);
186
- if (tabValue !== this.value) {
187
- this.value = this.getTabValue(element);
188
- this.notifyPropertyChange('value', tabValue);
189
- }
197
+ this.setValueAndNotify(tabValue);
190
198
  }
191
199
  }
192
200
  /**
@@ -286,7 +294,8 @@ let TabBar = class TabBar extends BasicElement {
286
294
  focusAndSetActiveTab(tab) {
287
295
  tab.focus();
288
296
  tab.scrollIntoView({ block: 'nearest' });
289
- this.value = this.getTabValue(tab);
297
+ const tabValue = this.getTabValue(tab);
298
+ this.setValueAndNotify(tabValue);
290
299
  }
291
300
  /**
292
301
  * Navigate to first focusable tab of the tab bar
package/lib/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '6.0.3';
1
+ export const VERSION = '6.0.4';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/elements",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "Element Framework Elements",
5
5
  "author": "Refinitiv",
6
6
  "license": "Apache-2.0",
@@ -328,8 +328,8 @@
328
328
  },
329
329
  "dependencies": {
330
330
  "@refinitiv-ui/browser-sparkline": "1.1.8",
331
- "@refinitiv-ui/halo-theme": "^6.1.2",
332
- "@refinitiv-ui/solar-theme": "^6.0.3",
331
+ "@refinitiv-ui/halo-theme": "^6.1.3",
332
+ "@refinitiv-ui/solar-theme": "^6.0.4",
333
333
  "@types/chart.js": "^2.9.31",
334
334
  "chart.js": "~2.9.4",
335
335
  "d3-interpolate": "^3.0.1",
@@ -338,24 +338,24 @@
338
338
  "tslib": "^2.3.1"
339
339
  },
340
340
  "devDependencies": {
341
- "@refinitiv-ui/core": "^6.0.2",
342
- "@refinitiv-ui/demo-block": "^6.0.3",
343
- "@refinitiv-ui/i18n": "^6.0.2",
344
- "@refinitiv-ui/phrasebook": "^6.1.1",
345
- "@refinitiv-ui/test-helpers": "^6.0.2",
346
- "@refinitiv-ui/translate": "^6.0.2",
347
- "@refinitiv-ui/utils": "^6.0.2",
341
+ "@refinitiv-ui/core": "^6.0.3",
342
+ "@refinitiv-ui/demo-block": "^6.0.4",
343
+ "@refinitiv-ui/i18n": "^6.0.3",
344
+ "@refinitiv-ui/phrasebook": "^6.1.2",
345
+ "@refinitiv-ui/test-helpers": "^6.0.3",
346
+ "@refinitiv-ui/translate": "^6.0.3",
347
+ "@refinitiv-ui/utils": "^6.0.3",
348
348
  "@types/d3-interpolate": "^3.0.1"
349
349
  },
350
350
  "peerDependencies": {
351
- "@refinitiv-ui/core": "^6.0.2",
352
- "@refinitiv-ui/i18n": "^6.0.2",
353
- "@refinitiv-ui/phrasebook": "^6.1.1",
354
- "@refinitiv-ui/translate": "^6.0.2",
355
- "@refinitiv-ui/utils": "^6.0.2"
351
+ "@refinitiv-ui/core": "^6.0.3",
352
+ "@refinitiv-ui/i18n": "^6.0.3",
353
+ "@refinitiv-ui/phrasebook": "^6.1.2",
354
+ "@refinitiv-ui/translate": "^6.0.3",
355
+ "@refinitiv-ui/utils": "^6.0.3"
356
356
  },
357
357
  "publishConfig": {
358
358
  "access": "public"
359
359
  },
360
- "gitHead": "2d6efc9712d7900cea0509b52cca0b8d61cddd1a"
360
+ "gitHead": "489b81e6e87d65a6b44b5960a9a5da795518b4ce"
361
361
  }