@cryptofi/core-ui 0.14.5 → 0.16.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.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +29 -3
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -158,6 +158,27 @@ declare const SvgIconUpload: _chakra_ui_system_dist_system_types.ChakraComponent
|
|
|
158
158
|
declare const SvgIconUser: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
159
159
|
//# sourceMappingURL=IconUser.d.ts.map
|
|
160
160
|
|
|
161
|
+
declare const SvgIconAvax: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
162
|
+
//# sourceMappingURL=IconAvax.d.ts.map
|
|
163
|
+
|
|
164
|
+
declare const SvgIconBch: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
165
|
+
//# sourceMappingURL=IconBch.d.ts.map
|
|
166
|
+
|
|
167
|
+
declare const SvgIconBtc: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
168
|
+
//# sourceMappingURL=IconBtc.d.ts.map
|
|
169
|
+
|
|
170
|
+
declare const SvgIconEth: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
171
|
+
//# sourceMappingURL=IconEth.d.ts.map
|
|
172
|
+
|
|
173
|
+
declare const SvgIconLink: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
174
|
+
//# sourceMappingURL=IconLink.d.ts.map
|
|
175
|
+
|
|
176
|
+
declare const SvgIconLtc: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
177
|
+
//# sourceMappingURL=IconLtc.d.ts.map
|
|
178
|
+
|
|
179
|
+
declare const SvgIconXlm: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
180
|
+
//# sourceMappingURL=IconXlm.d.ts.map
|
|
181
|
+
|
|
161
182
|
/**
|
|
162
183
|
* This is a partial Chakra theme and should be extended by the consuming application using
|
|
163
184
|
* Chakra's extendTheme method.
|
|
@@ -236,12 +257,15 @@ declare const uiColors: {
|
|
|
236
257
|
};
|
|
237
258
|
//# sourceMappingURL=uiColors.d.ts.map
|
|
238
259
|
|
|
239
|
-
declare const CfAreaChart: ({ data, dataKey, width, height, areaType, }: {
|
|
260
|
+
declare const CfAreaChart: ({ data, dataKey, width, height, areaType, showTooltip, isAnimated, formatter, }: {
|
|
240
261
|
data: any[] | undefined;
|
|
241
262
|
dataKey: string;
|
|
242
263
|
width?: string | undefined;
|
|
243
264
|
height?: string | undefined;
|
|
244
265
|
areaType?: CurveType | undefined;
|
|
266
|
+
showTooltip?: boolean | undefined;
|
|
267
|
+
isAnimated?: boolean | undefined;
|
|
268
|
+
formatter?: ((value: number) => string) | undefined;
|
|
245
269
|
}) => react_jsx_runtime.JSX.Element;
|
|
246
270
|
//# sourceMappingURL=AreaChart.d.ts.map
|
|
247
271
|
|
|
@@ -270,12 +294,14 @@ interface CfInputProps<T extends FieldValues> extends InputProps {
|
|
|
270
294
|
}
|
|
271
295
|
declare const CfInput: <T extends FieldValues>(props: CfInputProps<T>) => react_jsx_runtime.JSX.Element;
|
|
272
296
|
|
|
273
|
-
declare const CfLineChart: ({ data, dataKey, width, height, lineType, }: {
|
|
297
|
+
declare const CfLineChart: ({ data, dataKey, width, height, lineType, showTooltip, isAnimated, }: {
|
|
274
298
|
data: any[] | undefined;
|
|
275
299
|
dataKey: string;
|
|
276
300
|
width?: string | undefined;
|
|
277
301
|
height?: string | undefined;
|
|
278
302
|
lineType?: CurveType | undefined;
|
|
303
|
+
showTooltip?: boolean | undefined;
|
|
304
|
+
isAnimated?: boolean | undefined;
|
|
279
305
|
}) => react_jsx_runtime.JSX.Element;
|
|
280
306
|
//# sourceMappingURL=LineChart.d.ts.map
|
|
281
307
|
|
|
@@ -300,4 +326,4 @@ interface CfToastProps extends UseToastOptions {
|
|
|
300
326
|
}
|
|
301
327
|
declare const CfToast: (props: CfToastProps) => react_jsx_runtime.JSX.Element;
|
|
302
328
|
|
|
303
|
-
export { CfAreaChart, CfBreakpointDebugger, CfCard, CfCheckbox, type CfCheckboxProps, CfInput, type CfInputProps, CfLineChart, CfSelect, type CfSelectProps, CfTag, type CfTagProps, CfToast, SvgIconAlert as IconAlert, SvgIconArrowDown as IconArrowDown, SvgIconArrowUp as IconArrowUp, SvgIconBank as IconBank, SvgIconBarChart as IconBarChart, SvgIconCalendar as IconCalendar, SvgIconCaretDown as IconCaretDown, SvgIconCaretLeft as IconCaretLeft, SvgIconCaretRight as IconCaretRight, SvgIconCaretUp as IconCaretUp, SvgIconCent as IconCent, SvgIconCheck as IconCheck, SvgIconChecking as IconChecking, SvgIconClose as IconClose, SvgIconConnect as IconConnect, SvgIconCopy as IconCopy, SvgIconDollar as IconDollar, SvgIconDownload as IconDownload, SvgIconEdit as IconEdit, SvgIconEnter as IconEnter, SvgIconEnterInverted as IconEnterInverted, SvgIconExchange as IconExchange, SvgIconFilter as IconFilter, SvgIconHelp as IconHelp, SvgIconHistory as IconHistory, SvgIconHome as IconHome, SvgIconIndicatorDown as IconIndicatorDown, SvgIconIndicatorUp as IconIndicatorUp, SvgIconInfo as IconInfo, SvgIconMail as IconMail, SvgIconMenu as IconMenu, SvgIconMore as IconMore, SvgIconNotification as IconNotification, SvgIconOverview as IconOverview, SvgIconPercent as IconPercent, SvgIconPieChart as IconPieChart, SvgIconPlus as IconPlus, SvgIconReports as IconReports, SvgIconReservesSuccess as IconReservesSuccess, SvgIconReservesWarning as IconReservesWarning, SvgIconSearch as IconSearch, SvgIconSettings as IconSettings, SvgIconSettlement as IconSettlement, SvgIconSignIn as IconSignIn, SvgIconSignOut as IconSignOut, SvgIconSort as IconSort, SvgIconSpinner as IconSpinner, SvgIconSupport as IconSupport, SvgIconTrash as IconTrash, SvgIconUpload as IconUpload, SvgIconUser as IconUser, convertToUTCEpochTime, exportedTheme as coreTheme, formatPercentage, formatUSD, getDelta, uiColors };
|
|
329
|
+
export { CfAreaChart, CfBreakpointDebugger, CfCard, CfCheckbox, type CfCheckboxProps, CfInput, type CfInputProps, CfLineChart, CfSelect, type CfSelectProps, CfTag, type CfTagProps, CfToast, SvgIconAlert as IconAlert, SvgIconArrowDown as IconArrowDown, SvgIconArrowUp as IconArrowUp, SvgIconAvax as IconAvax, SvgIconBank as IconBank, SvgIconBarChart as IconBarChart, SvgIconBch as IconBch, SvgIconBtc as IconBtc, SvgIconCalendar as IconCalendar, SvgIconCaretDown as IconCaretDown, SvgIconCaretLeft as IconCaretLeft, SvgIconCaretRight as IconCaretRight, SvgIconCaretUp as IconCaretUp, SvgIconCent as IconCent, SvgIconCheck as IconCheck, SvgIconChecking as IconChecking, SvgIconClose as IconClose, SvgIconConnect as IconConnect, SvgIconCopy as IconCopy, SvgIconDollar as IconDollar, SvgIconDownload as IconDownload, SvgIconEdit as IconEdit, SvgIconEnter as IconEnter, SvgIconEnterInverted as IconEnterInverted, SvgIconEth as IconEth, SvgIconExchange as IconExchange, SvgIconFilter as IconFilter, SvgIconHelp as IconHelp, SvgIconHistory as IconHistory, SvgIconHome as IconHome, SvgIconIndicatorDown as IconIndicatorDown, SvgIconIndicatorUp as IconIndicatorUp, SvgIconInfo as IconInfo, SvgIconLink as IconLink, SvgIconLtc as IconLtc, SvgIconMail as IconMail, SvgIconMenu as IconMenu, SvgIconMore as IconMore, SvgIconNotification as IconNotification, SvgIconOverview as IconOverview, SvgIconPercent as IconPercent, SvgIconPieChart as IconPieChart, SvgIconPlus as IconPlus, SvgIconReports as IconReports, SvgIconReservesSuccess as IconReservesSuccess, SvgIconReservesWarning as IconReservesWarning, SvgIconSearch as IconSearch, SvgIconSettings as IconSettings, SvgIconSettlement as IconSettlement, SvgIconSignIn as IconSignIn, SvgIconSignOut as IconSignOut, SvgIconSort as IconSort, SvgIconSpinner as IconSpinner, SvgIconSupport as IconSupport, SvgIconTrash as IconTrash, SvgIconUpload as IconUpload, SvgIconUser as IconUser, SvgIconXlm as IconXlm, convertToUTCEpochTime, exportedTheme as coreTheme, formatPercentage, formatUSD, getDelta, uiColors };
|