@rango-dev/widget-embedded 0.20.1-next.17 → 0.20.1-next.19

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 (35) hide show
  1. package/dist/components/ConfirmWalletsModal/ConfirmWallets.styles.d.ts +460 -1112
  2. package/dist/components/ConfirmWalletsModal/ConfirmWallets.styles.d.ts.map +1 -1
  3. package/dist/components/ConfirmWalletsModal/ConfirmWalletsModal.d.ts.map +1 -1
  4. package/dist/components/CustomCollapsible/CustomCollapsible.d.ts +5 -0
  5. package/dist/components/CustomCollapsible/CustomCollapsible.d.ts.map +1 -0
  6. package/dist/components/CustomCollapsible/CustomCollapsible.styles.d.ts +654 -0
  7. package/dist/components/CustomCollapsible/CustomCollapsible.styles.d.ts.map +1 -0
  8. package/dist/components/CustomCollapsible/CustomCollapsible.types.d.ts +10 -0
  9. package/dist/components/CustomCollapsible/CustomCollapsible.types.d.ts.map +1 -0
  10. package/dist/components/Quote/Quote.d.ts.map +1 -1
  11. package/dist/components/Quote/Quote.types.d.ts +4 -0
  12. package/dist/components/Quote/Quote.types.d.ts.map +1 -1
  13. package/dist/components/Quote/QuoteCostDetails.d.ts +4 -0
  14. package/dist/components/Quote/QuoteCostDetails.d.ts.map +1 -0
  15. package/dist/components/Quote/QuoteCostDetails.styles.d.ts +806 -0
  16. package/dist/components/Quote/QuoteCostDetails.styles.d.ts.map +1 -0
  17. package/dist/constants/quote.d.ts +12 -0
  18. package/dist/constants/quote.d.ts.map +1 -0
  19. package/dist/index.js +2 -1
  20. package/dist/index.js.map +4 -4
  21. package/dist/utils/swap.d.ts +5 -1
  22. package/dist/utils/swap.d.ts.map +1 -1
  23. package/package.json +3 -3
  24. package/src/components/ConfirmWalletsModal/ConfirmWallets.styles.ts +27 -96
  25. package/src/components/ConfirmWalletsModal/ConfirmWalletsModal.tsx +24 -39
  26. package/src/components/CustomCollapsible/CustomCollapsible.styles.ts +75 -0
  27. package/src/components/CustomCollapsible/CustomCollapsible.tsx +55 -0
  28. package/src/components/CustomCollapsible/CustomCollapsible.types.ts +10 -0
  29. package/src/components/Quote/Quote.styles.ts +1 -1
  30. package/src/components/Quote/Quote.tsx +3 -19
  31. package/src/components/Quote/Quote.types.ts +5 -0
  32. package/src/components/Quote/QuoteCostDetails.styles.ts +50 -0
  33. package/src/components/Quote/QuoteCostDetails.tsx +218 -0
  34. package/src/constants/quote.ts +23 -0
  35. package/src/utils/swap.ts +35 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuoteCostDetails.styles.d.ts","sourceRoot":"","sources":["../../../src/components/Quote/QuoteCostDetails.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAQrB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIf,CAAC;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAQzB,CAAC;AAEH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAUtB,CAAC;AACH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAUlB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { SwapFee } from 'rango-sdk';
2
+ export type NameOfFees = 'Swapper Fee' | 'Affiliate Fee' | 'Outbound network fee' | 'Rango Fee' | 'Network Fee';
3
+ export declare const NAME_OF_FEES: Record<NameOfFees, string>;
4
+ export type FeesGroup = {
5
+ payable: {
6
+ [key in NameOfFees]?: SwapFee[];
7
+ };
8
+ nonePayable: {
9
+ [key in NameOfFees]?: SwapFee[];
10
+ };
11
+ };
12
+ //# sourceMappingURL=quote.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quote.d.ts","sourceRoot":"","sources":["../../src/constants/quote.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAIzC,MAAM,MAAM,UAAU,GAClB,aAAa,GACb,eAAe,GACf,sBAAsB,GACtB,WAAW,GACX,aAAa,CAAC;AAElB,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAMnD,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,OAAO,EAAE;SAAG,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE;KAAE,CAAC;IAC7C,WAAW,EAAE;SAAG,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE;KAAE,CAAC;CAClD,CAAC"}