@oanda/labs-crowd-view-widget 1.0.70 → 1.0.71

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.
Files changed (132) hide show
  1. package/CHANGELOG.md +454 -5400
  2. package/dist/main/translations/sources/ja.json +1 -1
  3. package/dist/module/CrowdViewWidget/CrowdViewWidget.js +19 -12
  4. package/dist/module/CrowdViewWidget/CrowdViewWidget.js.map +1 -1
  5. package/dist/module/CrowdViewWidget/Main.js +37 -30
  6. package/dist/module/CrowdViewWidget/Main.js.map +1 -1
  7. package/dist/module/CrowdViewWidget/components/Chart/Chart.js +36 -29
  8. package/dist/module/CrowdViewWidget/components/Chart/Chart.js.map +1 -1
  9. package/dist/module/CrowdViewWidget/components/Chart/ChartWithData.js +30 -23
  10. package/dist/module/CrowdViewWidget/components/Chart/ChartWithData.js.map +1 -1
  11. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getDataZoomConfig.js +11 -4
  12. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getDataZoomConfig.js.map +1 -1
  13. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getGridConfig.js +10 -3
  14. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getGridConfig.js.map +1 -1
  15. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getGridLines.js +21 -14
  16. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getGridLines.js.map +1 -1
  17. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getLabelsConfig.js +23 -15
  18. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getLabelsConfig.js.map +1 -1
  19. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getSeriesCandlestickConfig.js +16 -8
  20. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getSeriesCandlestickConfig.js.map +1 -1
  21. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getSeriesHeatmapConfig.js +10 -3
  22. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getSeriesHeatmapConfig.js.map +1 -1
  23. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getSeriesSentimentConfig.js +10 -3
  24. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getSeriesSentimentConfig.js.map +1 -1
  25. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getTooltipConfig.js +12 -5
  26. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getTooltipConfig.js.map +1 -1
  27. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getVisualMapConfig.js +13 -6
  28. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getVisualMapConfig.js.map +1 -1
  29. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getXAxisConfig.js +13 -6
  30. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getXAxisConfig.js.map +1 -1
  31. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getYAxisConfig.js +14 -7
  32. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/getYAxisConfig.js.map +1 -1
  33. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/index.js +126 -11
  34. package/dist/module/CrowdViewWidget/components/Chart/chartOptions/index.js.map +1 -1
  35. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatFullDate.js +8 -1
  36. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatFullDate.js.map +1 -1
  37. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatXAxisAdditionalLabel.js +8 -1
  38. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatXAxisAdditionalLabel.js.map +1 -1
  39. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatXAxisLabel.js +11 -4
  40. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatXAxisLabel.js.map +1 -1
  41. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatYAxisLabel.js +10 -3
  42. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/formatYAxisLabel.js.map +1 -1
  43. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getChartStyles.js +15 -8
  44. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getChartStyles.js.map +1 -1
  45. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getGradientColor.js +11 -3
  46. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getGradientColor.js.map +1 -1
  47. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getLabelData.js +8 -1
  48. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getLabelData.js.map +1 -1
  49. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getRectColor.js +12 -5
  50. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getRectColor.js.map +1 -1
  51. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getTooltipFormatter.js +17 -10
  52. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/getTooltipFormatter.js.map +1 -1
  53. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/handleLabelUpdate.js +16 -9
  54. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/handleLabelUpdate.js.map +1 -1
  55. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/handleTooltipUpdate.js +8 -1
  56. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/handleTooltipUpdate.js.map +1 -1
  57. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/index.js +148 -13
  58. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/index.js.map +1 -1
  59. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/isDifferenceGreaterThanTwoWeeks.js +10 -3
  60. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/isDifferenceGreaterThanTwoWeeks.js.map +1 -1
  61. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/normalizeLocale.js +8 -1
  62. package/dist/module/CrowdViewWidget/components/Chart/chartUtils/normalizeLocale.js.map +1 -1
  63. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/getBucketWidthMultiplayer.js +11 -4
  64. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/getBucketWidthMultiplayer.js.map +1 -1
  65. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/getInstrumentConfig.js +14 -7
  66. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/getInstrumentConfig.js.map +1 -1
  67. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/getTimeSpanForGranularity.js +14 -7
  68. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/getTimeSpanForGranularity.js.map +1 -1
  69. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/index.js +82 -7
  70. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/index.js.map +1 -1
  71. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/processOrderPositionBooks.js +8 -1
  72. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/processOrderPositionBooks.js.map +1 -1
  73. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/processPriceCandles.js +8 -1
  74. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/processPriceCandles.js.map +1 -1
  75. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/processSentiments.js +8 -1
  76. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/processSentiments.js.map +1 -1
  77. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/validateData.js +8 -1
  78. package/dist/module/CrowdViewWidget/components/Chart/dataUtils/validateData.js.map +1 -1
  79. package/dist/module/CrowdViewWidget/components/Chart/getOption.js +27 -20
  80. package/dist/module/CrowdViewWidget/components/Chart/getOption.js.map +1 -1
  81. package/dist/module/CrowdViewWidget/components/Chart/index.js +71 -6
  82. package/dist/module/CrowdViewWidget/components/Chart/index.js.map +1 -1
  83. package/dist/module/CrowdViewWidget/components/Chart/types.js +5 -1
  84. package/dist/module/CrowdViewWidget/components/Chart/useCrowdViewData.js +35 -28
  85. package/dist/module/CrowdViewWidget/components/Chart/useCrowdViewData.js.map +1 -1
  86. package/dist/module/CrowdViewWidget/components/Chart/useResizeObserver.js +13 -6
  87. package/dist/module/CrowdViewWidget/components/Chart/useResizeObserver.js.map +1 -1
  88. package/dist/module/CrowdViewWidget/components/Legend/Legend.js +23 -15
  89. package/dist/module/CrowdViewWidget/components/Legend/Legend.js.map +1 -1
  90. package/dist/module/CrowdViewWidget/components/Legend/LegendBar.js +17 -9
  91. package/dist/module/CrowdViewWidget/components/Legend/LegendBar.js.map +1 -1
  92. package/dist/module/CrowdViewWidget/components/Legend/index.js +27 -2
  93. package/dist/module/CrowdViewWidget/components/Legend/index.js.map +1 -1
  94. package/dist/module/CrowdViewWidget/components/index.js +27 -2
  95. package/dist/module/CrowdViewWidget/components/index.js.map +1 -1
  96. package/dist/module/CrowdViewWidget/constants.js +38 -31
  97. package/dist/module/CrowdViewWidget/constants.js.map +1 -1
  98. package/dist/module/CrowdViewWidget/index.js +27 -2
  99. package/dist/module/CrowdViewWidget/index.js.map +1 -1
  100. package/dist/module/CrowdViewWidget/render.js +13 -10
  101. package/dist/module/CrowdViewWidget/render.js.map +1 -1
  102. package/dist/module/CrowdViewWidget/selectConfig.js +49 -43
  103. package/dist/module/CrowdViewWidget/selectConfig.js.map +1 -1
  104. package/dist/module/CrowdViewWidget/types.js +7 -1
  105. package/dist/module/CrowdViewWidget/types.js.map +1 -1
  106. package/dist/module/gql/getOrderPositionBooks.js +8 -3
  107. package/dist/module/gql/getOrderPositionBooks.js.map +1 -1
  108. package/dist/module/gql/getPriceCandles.js +8 -3
  109. package/dist/module/gql/getPriceCandles.js.map +1 -1
  110. package/dist/module/gql/getSentiments.js +8 -3
  111. package/dist/module/gql/getSentiments.js.map +1 -1
  112. package/dist/module/gql/types/fragment-masking.js +11 -3
  113. package/dist/module/gql/types/fragment-masking.js.map +1 -1
  114. package/dist/module/gql/types/gql.js +9 -2
  115. package/dist/module/gql/types/gql.js.map +1 -1
  116. package/dist/module/gql/types/graphql.js +27 -21
  117. package/dist/module/gql/types/graphql.js.map +1 -1
  118. package/dist/module/gql/types/index.js +27 -2
  119. package/dist/module/gql/types/index.js.map +1 -1
  120. package/dist/module/index.js +16 -1
  121. package/dist/module/index.js.map +1 -1
  122. package/dist/module/translations/index.js +15 -8
  123. package/dist/module/translations/index.js.map +1 -1
  124. package/dist/module/translations/sources/ja.json +1 -1
  125. package/dist/module/translations/translations.js +7 -1
  126. package/dist/module/translations/translations.js.map +1 -1
  127. package/dist/types/gql/getOrderPositionBooks.d.ts +1 -1
  128. package/dist/types/gql/getPriceCandles.d.ts +1 -1
  129. package/dist/types/gql/getSentiments.d.ts +1 -1
  130. package/package.json +8 -4
  131. package/src/translations/sources/ja.json +1 -1
  132. package/tsconfig.types.json +2 -4

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.