@orderly.network/markets 3.1.0 → 3.1.1-alpha.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.
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +639 -260
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +486 -107
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -88,6 +88,7 @@ declare enum MarketsTabName {
|
|
|
88
88
|
Recent = "recent",
|
|
89
89
|
All = "all",
|
|
90
90
|
Rwa = "rwa",
|
|
91
|
+
PreTge = "preTge",
|
|
91
92
|
NewListing = "newListing",
|
|
92
93
|
Community = "community"
|
|
93
94
|
}
|
|
@@ -126,6 +127,7 @@ declare const MarketsTypeMap: {
|
|
|
126
127
|
all: MarketsType;
|
|
127
128
|
new: MarketsType;
|
|
128
129
|
rwa: MarketsType;
|
|
130
|
+
preTge: MarketsType;
|
|
129
131
|
};
|
|
130
132
|
type MarketsListFullType = keyof typeof MarketsTypeMap;
|
|
131
133
|
declare const useMarketsListFullScript: (options: UseMarketsListFullScriptOptions) => {
|
|
@@ -631,6 +633,7 @@ declare const SymbolInfoBarRiskNotice: react__default.FC<{
|
|
|
631
633
|
visible: boolean;
|
|
632
634
|
symbolWithBroker: string;
|
|
633
635
|
brokerName: string;
|
|
636
|
+
isPreTge?: boolean;
|
|
634
637
|
/** When true, height follows content instead of fixed 46px (e.g. for mobile) */
|
|
635
638
|
autoHeight?: boolean;
|
|
636
639
|
}>;
|
|
@@ -648,7 +651,7 @@ type SymbolInfoBarFullWidgetPros = UseSymbolInfoBarFullScriptOptions & Pick<Symb
|
|
|
648
651
|
};
|
|
649
652
|
declare const SymbolInfoBarFullWidget: FC<SymbolInfoBarFullWidgetPros>;
|
|
650
653
|
|
|
651
|
-
type MarketType = "all" | "recent" | "newListing" | "favorites" | (string & {});
|
|
654
|
+
type MarketType = "all" | "recent" | "newListing" | "rwa" | "preTge" | "favorites" | (string & {});
|
|
652
655
|
type HorizontalMarketsScriptOptions = {
|
|
653
656
|
symbols?: string[];
|
|
654
657
|
maxItems?: number;
|
|
@@ -854,6 +857,7 @@ declare const MarketsHomePage: FC<MarketsHomePageProps>;
|
|
|
854
857
|
|
|
855
858
|
type SymbolDisplayProps = FormattedTextProps & {
|
|
856
859
|
showBadge?: boolean;
|
|
860
|
+
/** Market row data used for RWA status fields. */
|
|
857
861
|
record?: any;
|
|
858
862
|
};
|
|
859
863
|
declare const SymbolDisplay: react.MemoExoticComponent<(props: SymbolDisplayProps) => react_jsx_runtime.JSX.Element>;
|
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,7 @@ declare enum MarketsTabName {
|
|
|
88
88
|
Recent = "recent",
|
|
89
89
|
All = "all",
|
|
90
90
|
Rwa = "rwa",
|
|
91
|
+
PreTge = "preTge",
|
|
91
92
|
NewListing = "newListing",
|
|
92
93
|
Community = "community"
|
|
93
94
|
}
|
|
@@ -126,6 +127,7 @@ declare const MarketsTypeMap: {
|
|
|
126
127
|
all: MarketsType;
|
|
127
128
|
new: MarketsType;
|
|
128
129
|
rwa: MarketsType;
|
|
130
|
+
preTge: MarketsType;
|
|
129
131
|
};
|
|
130
132
|
type MarketsListFullType = keyof typeof MarketsTypeMap;
|
|
131
133
|
declare const useMarketsListFullScript: (options: UseMarketsListFullScriptOptions) => {
|
|
@@ -631,6 +633,7 @@ declare const SymbolInfoBarRiskNotice: react__default.FC<{
|
|
|
631
633
|
visible: boolean;
|
|
632
634
|
symbolWithBroker: string;
|
|
633
635
|
brokerName: string;
|
|
636
|
+
isPreTge?: boolean;
|
|
634
637
|
/** When true, height follows content instead of fixed 46px (e.g. for mobile) */
|
|
635
638
|
autoHeight?: boolean;
|
|
636
639
|
}>;
|
|
@@ -648,7 +651,7 @@ type SymbolInfoBarFullWidgetPros = UseSymbolInfoBarFullScriptOptions & Pick<Symb
|
|
|
648
651
|
};
|
|
649
652
|
declare const SymbolInfoBarFullWidget: FC<SymbolInfoBarFullWidgetPros>;
|
|
650
653
|
|
|
651
|
-
type MarketType = "all" | "recent" | "newListing" | "favorites" | (string & {});
|
|
654
|
+
type MarketType = "all" | "recent" | "newListing" | "rwa" | "preTge" | "favorites" | (string & {});
|
|
652
655
|
type HorizontalMarketsScriptOptions = {
|
|
653
656
|
symbols?: string[];
|
|
654
657
|
maxItems?: number;
|
|
@@ -854,6 +857,7 @@ declare const MarketsHomePage: FC<MarketsHomePageProps>;
|
|
|
854
857
|
|
|
855
858
|
type SymbolDisplayProps = FormattedTextProps & {
|
|
856
859
|
showBadge?: boolean;
|
|
860
|
+
/** Market row data used for RWA status fields. */
|
|
857
861
|
record?: any;
|
|
858
862
|
};
|
|
859
863
|
declare const SymbolDisplay: react.MemoExoticComponent<(props: SymbolDisplayProps) => react_jsx_runtime.JSX.Element>;
|