@dhedge/trading-widget 4.0.4 → 4.0.5-canary.0

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 (27) hide show
  1. package/README.md +1 -3
  2. package/index.cjs +10 -10
  3. package/index.js +3999 -3955
  4. package/package.json +2 -2
  5. package/style.css +1 -1
  6. package/trading-widget/components/common/balance/balance.d.ts +0 -1
  7. package/trading-widget/components/common/layout/index.d.ts +0 -2
  8. package/trading-widget/components/widget/widget-buttons/index.d.ts +1 -0
  9. package/trading-widget/components/widget/widget-buttons/limit-order-button/limit-order-button.d.ts +3 -0
  10. package/trading-widget/components/widget/widget-input/index.d.ts +3 -0
  11. package/trading-widget/components/widget/widget-input/input-arrow/input-arrow.d.ts +2 -0
  12. package/trading-widget/components/widget/widget-input/receive-token-balance/receive-token-balance.d.ts +2 -0
  13. package/trading-widget/components/widget/widget-input/receive-token-balance/receive-token-balance.hooks.d.ts +3 -0
  14. package/trading-widget/components/widget/widget-input/send-token-balance/send-token-balance.d.ts +2 -0
  15. package/trading-widget/components/widget/widget-input/send-token-balance/send-token-balance.hooks.d.ts +3 -0
  16. package/trading-widget/components/widget/widget-input/widget-input.d.ts +2 -2
  17. package/trading-widget/components/widget/widget-input/widget-input.hooks.d.ts +0 -1
  18. package/trading-widget/providers/component-provider/component-provider.d.ts +1 -0
  19. package/trading-widget/providers/component-provider/component-provider.hooks.d.ts +1 -0
  20. package/trading-widget/providers/component-provider/component-provider.types.d.ts +4 -0
  21. package/trading-widget/providers/theme-provider/theme-provider.types.d.ts +11 -2
  22. package/trading-widget/providers/translation-provider/translation-provider.types.d.ts +1 -3
  23. package/trading-widget/components/common/layout/balance/balance.d.ts +0 -2
  24. package/trading-widget/components/deposit/balance/balance.d.ts +0 -2
  25. package/trading-widget/components/deposit/balance/balance.hooks.d.ts +0 -4
  26. package/trading-widget/components/withdraw/init-step/balance/init-withdraw-balance.d.ts +0 -2
  27. package/trading-widget/components/withdraw/init-step/balance/init-withdraw-balance.hooks.d.ts +0 -4
package/README.md CHANGED
@@ -511,10 +511,7 @@ path: `component.meta[name]`
511
511
  > | `max` | string | Max | |
512
512
  > | `allAssets` | string | All Assets | |
513
513
  > | `all` | string | All | |
514
- > | `payWith` | string | Pay with | |
515
- > | `buyEstimated` | string | Buy (estimated) | |
516
514
  > | `sell` | string | Sell | |
517
- > | `receiveEstimated` | string | Receive (estimated) | |
518
515
  > | `confirmInWallet` | string | Please confirm in wallet | |
519
516
  > | `pending` | string | Pending... | |
520
517
  > | `approve` | string | Approve | |
@@ -582,6 +579,7 @@ path: `component.meta[name]`
582
579
  > | `paidLabel` | string | Paid | |
583
580
  > | `priceLabel` | string | Price | |
584
581
  > | `transactionLabel` | string | Transaction | |
582
+ > | `stopOrder` | string | Stop Order | |
585
583
 
586
584
  ###### Source: `packages/trading-widget/src/trading-widget/providers/translation-provider/translation-provider.tsx`
587
585