@oanda/labs-instruments-price-chart-widget 1.0.7 → 1.0.8
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 +36 -0
- package/dist/main/InstrumentsPriceChartWidget/components/Chart.js +7 -2
- package/dist/main/InstrumentsPriceChartWidget/components/Chart.js.map +1 -1
- package/dist/main/InstrumentsPriceChartWidget/components/formatters.js +26 -1
- package/dist/main/InstrumentsPriceChartWidget/components/formatters.js.map +1 -1
- package/dist/main/InstrumentsPriceChartWidget/components/getOption.js +21 -2
- package/dist/main/InstrumentsPriceChartWidget/components/getOption.js.map +1 -1
- package/dist/main/InstrumentsPriceChartWidget/components/types.js.map +1 -1
- package/dist/main/InstrumentsPriceChartWidget/getPriceCandlesMock.js +30 -13
- package/dist/main/InstrumentsPriceChartWidget/getPriceCandlesMock.js.map +1 -1
- package/dist/main/gql/mock/getPriceCandles.js +3 -0
- package/dist/main/gql/mock/getPriceCandles.js.map +1 -1
- package/dist/main/gql/mock/schema.graphqls +3 -0
- package/dist/main/gql/types/gql.js +1 -1
- package/dist/main/gql/types/gql.js.map +1 -1
- package/dist/main/gql/types/graphql.js +28 -1
- package/dist/main/gql/types/graphql.js.map +1 -1
- package/dist/main/translations/sources/en.json +7 -0
- package/dist/main/translations/sources/es.json +2 -0
- package/dist/main/translations/sources/th.json +2 -0
- package/dist/main/translations/sources/zh_TW.json +2 -0
- package/dist/module/InstrumentsPriceChartWidget/components/Chart.js +8 -3
- package/dist/module/InstrumentsPriceChartWidget/components/Chart.js.map +1 -1
- package/dist/module/InstrumentsPriceChartWidget/components/formatters.js +24 -0
- package/dist/module/InstrumentsPriceChartWidget/components/formatters.js.map +1 -1
- package/dist/module/InstrumentsPriceChartWidget/components/getOption.js +22 -3
- package/dist/module/InstrumentsPriceChartWidget/components/getOption.js.map +1 -1
- package/dist/module/InstrumentsPriceChartWidget/components/types.js.map +1 -1
- package/dist/module/InstrumentsPriceChartWidget/getPriceCandlesMock.js +30 -13
- package/dist/module/InstrumentsPriceChartWidget/getPriceCandlesMock.js.map +1 -1
- package/dist/module/gql/mock/getPriceCandles.js +3 -0
- package/dist/module/gql/mock/getPriceCandles.js.map +1 -1
- package/dist/module/gql/mock/schema.graphqls +3 -0
- package/dist/module/gql/types/gql.js +1 -1
- package/dist/module/gql/types/gql.js.map +1 -1
- package/dist/module/gql/types/graphql.js +27 -0
- package/dist/module/gql/types/graphql.js.map +1 -1
- package/dist/module/translations/sources/en.json +7 -0
- package/dist/module/translations/sources/es.json +2 -0
- package/dist/module/translations/sources/th.json +2 -0
- package/dist/module/translations/sources/zh_TW.json +2 -0
- package/dist/types/InstrumentsPriceChartWidget/components/formatters.d.ts +2 -0
- package/dist/types/InstrumentsPriceChartWidget/components/types.d.ts +12 -0
- package/dist/types/gql/types/gql.d.ts +2 -2
- package/dist/types/gql/types/graphql.d.ts +23 -1
- package/lokalise.config.json +1 -1
- package/package.json +3 -3
- package/src/InstrumentsPriceChartWidget/components/Chart.tsx +5 -0
- package/src/InstrumentsPriceChartWidget/components/formatters.ts +22 -0
- package/src/InstrumentsPriceChartWidget/components/getOption.ts +25 -3
- package/src/InstrumentsPriceChartWidget/components/types.ts +14 -0
- package/src/InstrumentsPriceChartWidget/getPriceCandlesMock.tsx +13 -5
- package/src/gql/mock/getPriceCandles.ts +3 -0
- package/src/gql/mock/schema.graphqls +3 -0
- package/src/gql/types/gql.ts +3 -3
- package/src/gql/types/graphql.ts +32 -2
- package/src/translations/sources/en.json +7 -0
- package/src/translations/sources/es.json +2 -0
- package/src/translations/sources/th.json +2 -0
- package/src/translations/sources/zh_TW.json +2 -0