@odynn/awayz-core 0.2.29 → 0.2.30
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/components/index.js +5 -4
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/main.js +18 -17
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { CashValue as
|
|
2
|
-
import { EToolTipPosition as
|
|
1
|
+
import { CashValue as p } from "./CashValue/CashValue.js";
|
|
2
|
+
import { EInvalidAmountDisplayOption as a, EToolTipPosition as l } from "./CashValue/CashValueTypes.js";
|
|
3
3
|
export {
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
p as CashValue,
|
|
5
|
+
a as EInvalidAmountDisplayOption,
|
|
6
|
+
l as EToolTipPosition
|
|
6
7
|
};
|
package/dist/main.js
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
1
1
|
import { AwayzProvider as r } from "./providers/AwayzProvider.js";
|
|
2
2
|
import { useAwayzContext as a } from "./hooks/useAwayzContext.js";
|
|
3
|
-
import { useSearchLimit as
|
|
4
|
-
import { useWallet as
|
|
5
|
-
import { EAuthFlow as
|
|
6
|
-
import { c, i as
|
|
3
|
+
import { useSearchLimit as n } from "./hooks/useSearchLimit.js";
|
|
4
|
+
import { useWallet as m } from "./hooks/useWallet/useWallet.js";
|
|
5
|
+
import { EAuthFlow as f } from "./types/EAuthFlow.js";
|
|
6
|
+
import { c as l, i as c } from "./AccountService-BLoJ4G-f.js";
|
|
7
7
|
import { clientNoRetryInstance as y } from "./services/noRetryInstance.js";
|
|
8
|
-
import { CurrencyService as
|
|
9
|
-
import { awayzClient as
|
|
10
|
-
import { CashValue as
|
|
11
|
-
import {
|
|
8
|
+
import { CurrencyService as A } from "./services/currency/CurrencyService.js";
|
|
9
|
+
import { awayzClient as h } from "./configs/awayzClient.js";
|
|
10
|
+
import { CashValue as z } from "./components/CashValue/CashValue.js";
|
|
11
|
+
import { EInvalidAmountDisplayOption as I, EToolTipPosition as d } from "./components/CashValue/CashValueTypes.js";
|
|
12
12
|
import { getBaseUrl as S } from "./configs/baseUrl.js";
|
|
13
13
|
export {
|
|
14
14
|
r as AwayzProvider,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
I as
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
z as CashValue,
|
|
16
|
+
A as CurrencyService,
|
|
17
|
+
f as EAuthFlow,
|
|
18
|
+
I as EInvalidAmountDisplayOption,
|
|
19
|
+
d as EToolTipPosition,
|
|
20
|
+
h as awayzClient,
|
|
21
|
+
l as clientInstance,
|
|
21
22
|
y as clientNoRetryInstance,
|
|
22
23
|
S as getBaseUrl,
|
|
23
|
-
|
|
24
|
+
c as instance,
|
|
24
25
|
a as useAwayzContext,
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
n as useSearchLimit,
|
|
27
|
+
m as useWallet
|
|
27
28
|
};
|