acttrader-charts 1.3.0-beta.13 → 1.3.0-beta.14

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/dist/index.cjs CHANGED
@@ -16837,7 +16837,7 @@ var IndicatorSettingsDialog = class {
16837
16837
  input.max = String(field.max);
16838
16838
  input.step = String(field.step);
16839
16839
  input.value = String(currentVal);
16840
- input.enterKeyHint = "done";
16840
+ input.enterKeyHint = "go";
16841
16841
  Object.assign(input.style, {
16842
16842
  width: "80px",
16843
16843
  background: this.theme.background,
@@ -18424,7 +18424,7 @@ var DrawingStylePopover = class {
18424
18424
  input.step = "0.001";
18425
18425
  input.value = current;
18426
18426
  input.title = "Level ratio \u2014 press Enter to apply";
18427
- input.enterKeyHint = "done";
18427
+ input.enterKeyHint = "go";
18428
18428
  Object.assign(input.style, {
18429
18429
  width: "58px",
18430
18430
  padding: "2px 4px",
@@ -18686,7 +18686,7 @@ var DraftQtyFlyout = class {
18686
18686
  makeInput() {
18687
18687
  const input = document.createElement("input");
18688
18688
  input.type = "number";
18689
- input.enterKeyHint = "done";
18689
+ input.enterKeyHint = "go";
18690
18690
  Object.assign(input.style, {
18691
18691
  width: "64px",
18692
18692
  background: "transparent",
@@ -25171,7 +25171,7 @@ var _ChartEngine = class _ChartEngine {
25171
25171
  this.canvasWrap.appendChild(this.drawCanvas);
25172
25172
  this.textInputEl = document.createElement("input");
25173
25173
  this.textInputEl.type = "text";
25174
- this.textInputEl.enterKeyHint = "done";
25174
+ this.textInputEl.enterKeyHint = "go";
25175
25175
  Object.assign(this.textInputEl.style, {
25176
25176
  position: "absolute",
25177
25177
  display: "none",