@cryptofi/core-ui 0.16.0 → 0.18.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 +4 -4
- package/dist/types/index.d.ts +7 -2
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -294,7 +294,7 @@ interface CfInputProps<T extends FieldValues> extends InputProps {
|
|
|
294
294
|
}
|
|
295
295
|
declare const CfInput: <T extends FieldValues>(props: CfInputProps<T>) => react_jsx_runtime.JSX.Element;
|
|
296
296
|
|
|
297
|
-
declare const CfLineChart: ({ data, dataKey, width, height, lineType, showTooltip, isAnimated, }: {
|
|
297
|
+
declare const CfLineChart: ({ data, dataKey, width, height, lineType, showTooltip, isAnimated, formatter, }: {
|
|
298
298
|
data: any[] | undefined;
|
|
299
299
|
dataKey: string;
|
|
300
300
|
width?: string | undefined;
|
|
@@ -302,6 +302,7 @@ declare const CfLineChart: ({ data, dataKey, width, height, lineType, showToolti
|
|
|
302
302
|
lineType?: CurveType | undefined;
|
|
303
303
|
showTooltip?: boolean | undefined;
|
|
304
304
|
isAnimated?: boolean | undefined;
|
|
305
|
+
formatter?: ((value: number) => string) | undefined;
|
|
305
306
|
}) => react_jsx_runtime.JSX.Element;
|
|
306
307
|
//# sourceMappingURL=LineChart.d.ts.map
|
|
307
308
|
|
|
@@ -311,6 +312,10 @@ interface CfSelectProps<T extends FieldValues> extends SelectProps {
|
|
|
311
312
|
helperText?: string;
|
|
312
313
|
label?: string;
|
|
313
314
|
}
|
|
315
|
+
interface CfSelectOption {
|
|
316
|
+
name: string;
|
|
317
|
+
value?: string;
|
|
318
|
+
}
|
|
314
319
|
declare const CfSelect: <T extends FieldValues>(props: CfSelectProps<T>) => react_jsx_runtime.JSX.Element;
|
|
315
320
|
|
|
316
321
|
interface CfTagProps extends TagProps {
|
|
@@ -326,4 +331,4 @@ interface CfToastProps extends UseToastOptions {
|
|
|
326
331
|
}
|
|
327
332
|
declare const CfToast: (props: CfToastProps) => react_jsx_runtime.JSX.Element;
|
|
328
333
|
|
|
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 };
|
|
334
|
+
export { CfAreaChart, CfBreakpointDebugger, CfCard, CfCheckbox, type CfCheckboxProps, CfInput, type CfInputProps, CfLineChart, CfSelect, type CfSelectOption, 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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptofi/core-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "CryptoFi"
|
|
6
6
|
},
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"test:watch": "yarn test --collectCoverage=false --watch",
|
|
22
22
|
"storybook": "storybook dev -p 6006",
|
|
23
23
|
"build:storybook": "storybook build",
|
|
24
|
-
"publish:local": "yarn build &&
|
|
24
|
+
"publish:local": "yarn build && npx yalc publish --push",
|
|
25
25
|
"publish:npm": "npm publish --access public && yarn publish:notifier",
|
|
26
|
-
"icons:gen": "yarn icons:clean && yarn icons:prefix &&
|
|
27
|
-
"icons:clean": "rm -rf src/icons
|
|
26
|
+
"icons:gen": "yarn icons:clean && yarn icons:prefix && npx @svgr/cli --out-dir ./src/icons -- ./svg-icons",
|
|
27
|
+
"icons:clean": "rm -rf src/icons",
|
|
28
28
|
"icons:prefix": "node scripts/prefixIcons.cjs",
|
|
29
29
|
"publish:notifier": "dotenv cross-var node scripts/npmPublishNotifier.cjs %SLACK_WEBHOOK_URL%"
|
|
30
30
|
},
|