@cryptofi/core-ui 2.0.5 → 2.0.7
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 +6 -6
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +4 -2
- package/package.json +41 -37
package/dist/types/index.d.ts
CHANGED
|
@@ -476,12 +476,13 @@ declare const DevConsole: ({ children, footer, consoleButton, isLocalDev, }: {
|
|
|
476
476
|
}) => react_jsx_runtime.JSX.Element;
|
|
477
477
|
//# sourceMappingURL=DevConsole.d.ts.map
|
|
478
478
|
|
|
479
|
-
declare const FloatingButton: ({ hideButton, enableRefetch, onOpen, uiColor, hasSystemOverride, authBypassEnabled, }: {
|
|
479
|
+
declare const FloatingButton: ({ hideButton, enableRefetch, onOpen, uiColor, hasSystemOverride, hasFiOverride, authBypassEnabled, }: {
|
|
480
480
|
hideButton: boolean;
|
|
481
481
|
enableRefetch: boolean;
|
|
482
482
|
onOpen: () => void;
|
|
483
483
|
uiColor: string;
|
|
484
484
|
hasSystemOverride: boolean;
|
|
485
|
+
hasFiOverride: boolean;
|
|
485
486
|
authBypassEnabled: boolean;
|
|
486
487
|
}) => react_jsx_runtime.JSX.Element;
|
|
487
488
|
//# sourceMappingURL=FloatingButton.d.ts.map
|
|
@@ -691,4 +692,5 @@ declare function useDebounceValue<T>(initialValue: T | (() => T), delay: number,
|
|
|
691
692
|
declare function useUnmount(func: () => void): void;
|
|
692
693
|
//# sourceMappingURL=useUnmount.d.ts.map
|
|
693
694
|
|
|
694
|
-
export { CfAreaChart, CfBreakpointDebugger, CfButtonGroup, CfButtonGroupButton, CfCard, CfCarousel, CfCheckbox,
|
|
695
|
+
export { CfAreaChart, CfBreakpointDebugger, CfButtonGroup, CfButtonGroupButton, CfCard, CfCarousel, CfCheckbox, DevConsole as CfDevConsole, Actions as CfDevConsoleActions, Button as CfDevConsoleButton, DataGrid as CfDevConsoleDataGrid, FloatingButton as CfDevConsoleFloatingButton, Links as CfDevConsoleLinks, SystemStatus as CfDevConsoleSystemStatus, CfForm, CfInput, CfInputArray, CfLineChart, CfModal, CfNavLink, CfOpenSearchPagination, CfPagination, PrettyWrap as CfPrettyWrap, CfSelect, CfSpinner, CfStatCard, CfTag, CfToast, CfTooltip, SvgIconAave as IconAave, SvgIconAlert as IconAlert, SvgIconAlgo as IconAlgo, SvgIconArrowDown as IconArrowDown, SvgIconArrowUp as IconArrowUp, SvgIconAvax as IconAvax, SvgIconBank as IconBank, SvgIconBarChart as IconBarChart, SvgIconBch as IconBch, SvgIconBookCheck as IconBookCheck, 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, SvgIconCircleCheck as IconCircleCheck, SvgIconClose as IconClose, SvgIconConnect as IconConnect, SvgIconCopy as IconCopy, SvgIconDiamonds as IconDiamonds, SvgIconDoge as IconDoge, SvgIconDollar as IconDollar, SvgIconDollarBill as IconDollarBill, SvgIconDownload as IconDownload, SvgIconEdit as IconEdit, SvgIconEnter as IconEnter, SvgIconEnterInverted as IconEnterInverted, SvgIconEth as IconEth, SvgIconExchange as IconExchange, SvgIconExternalLink as IconExternalLink, SvgIconFil as IconFil, SvgIconFilter as IconFilter, SvgIconHelp as IconHelp, SvgIconHistory as IconHistory, SvgIconHome as IconHome, SvgIconIndicatorDown as IconIndicatorDown, SvgIconIndicatorUp as IconIndicatorUp, SvgIconInfo as IconInfo, SvgIconLink as IconLink, SvgIconLock as IconLock, SvgIconLtc as IconLtc, SvgIconMail as IconMail, SvgIconMatic as IconMatic, SvgIconMenu as IconMenu, SvgIconMinus as IconMinus, SvgIconMkr as IconMkr, SvgIconMore as IconMore, SvgIconNear as IconNear, SvgIconNotification as IconNotification, SvgIconOverview as IconOverview, SvgIconPercent as IconPercent, SvgIconPieChart as IconPieChart, SvgIconPlus as IconPlus, SvgIconRefresh as IconRefresh, SvgIconReports as IconReports, SvgIconReservesSuccess as IconReservesSuccess, SvgIconReservesWarning as IconReservesWarning, SvgIconSearch as IconSearch, SvgIconSettings as IconSettings, SvgIconSettlement as IconSettlement, SvgIconSignIn as IconSignIn, SvgIconSignOut as IconSignOut, SvgIconSol as IconSol, SvgIconSort as IconSort, SvgIconSpinner as IconSpinner, SvgIconSupport as IconSupport, SvgIconTrash as IconTrash, SvgIconUpload as IconUpload, SvgIconUsdc as IconUsdc, SvgIconUsdt as IconUsdt, SvgIconUser as IconUser, SvgIconXlm as IconXlm, SvgIconXrp as IconXrp, aggregateAmounts, exportedTheme as coreTheme, dateFormats, dateToTimestamp, formatPercentage, formatPhoneNumber, formatUsd, getDelta, isIframe, layoutMinWidth, sampleFromEnd, splitOnCapitals, uiColors, usdToNumber, useBreakpoint as useCfBreakpoint, useDebounceCallback, useDebounceValue, useUnmount, utcDateToLocal };
|
|
696
|
+
export type { CfCheckboxProps, CfSelectOption, PageClickEvent };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptofi/core-ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "CryptoFi"
|
|
6
6
|
},
|
|
@@ -45,59 +45,63 @@
|
|
|
45
45
|
"files": [
|
|
46
46
|
"dist"
|
|
47
47
|
],
|
|
48
|
+
"resolutions": {
|
|
49
|
+
"react": "^18.0.0",
|
|
50
|
+
"react-dom": "^18.0.0"
|
|
51
|
+
},
|
|
48
52
|
"peerDependencies": {
|
|
49
53
|
"@chakra-ui/react": "^2.10.3",
|
|
50
54
|
"@emotion/react": "^11.14.0",
|
|
51
55
|
"@emotion/styled": "^11.14.0",
|
|
52
56
|
"framer-motion": "^10.16.4",
|
|
53
|
-
"react": "^
|
|
54
|
-
"react-dom": "^
|
|
57
|
+
"react": "^18.x.x",
|
|
58
|
+
"react-dom": "^18.x.x",
|
|
55
59
|
"react-imask": "^7.6.1"
|
|
56
60
|
},
|
|
57
61
|
"dependencies": {
|
|
58
62
|
"@chakra-ui/anatomy": "^2.3.4",
|
|
59
|
-
"@hookform/resolvers": "^
|
|
60
|
-
"big.js": "^
|
|
63
|
+
"@hookform/resolvers": "^5.0.1",
|
|
64
|
+
"big.js": "^7.0.1",
|
|
61
65
|
"colord": "^2.9.3",
|
|
62
66
|
"currency.js": "^2.0.4",
|
|
63
67
|
"dayjs": "^1.11.13",
|
|
64
68
|
"lodash": "^4.17.21",
|
|
65
69
|
"nanoid": "^3.3.11",
|
|
66
70
|
"react-currency-input-field": "^3.10.0",
|
|
67
|
-
"react-hook-form": "^7.
|
|
71
|
+
"react-hook-form": "^7.56.3",
|
|
68
72
|
"react-paginate": "^8.3.0",
|
|
69
|
-
"recharts": "^2.15.
|
|
73
|
+
"recharts": "^2.15.3",
|
|
70
74
|
"yup": "^1.6.1"
|
|
71
75
|
},
|
|
72
76
|
"devDependencies": {
|
|
73
|
-
"@babel/core": "^7.
|
|
77
|
+
"@babel/core": "^7.27.1",
|
|
74
78
|
"@chakra-ui/react": "^2.10.3",
|
|
75
79
|
"@chakra-ui/storybook-addon": "^5.2.5",
|
|
76
80
|
"@emotion/react": "^11.14.0",
|
|
77
81
|
"@emotion/styled": "^11.14.0",
|
|
78
|
-
"@eslint/js": "^9.
|
|
79
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
82
|
+
"@eslint/js": "^9.25.1",
|
|
83
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
80
84
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
81
85
|
"@rollup/plugin-terser": "^0.4.4",
|
|
82
86
|
"@storybook/addon-essentials": "^8.6.12",
|
|
83
|
-
"@storybook/addon-interactions": "^8.6.
|
|
84
|
-
"@storybook/addon-links": "^8.6.
|
|
85
|
-
"@storybook/addon-onboarding": "^8.6.
|
|
87
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
88
|
+
"@storybook/addon-links": "^8.6.12",
|
|
89
|
+
"@storybook/addon-onboarding": "^8.6.12",
|
|
86
90
|
"@storybook/blocks": "^8.6.12",
|
|
87
|
-
"@storybook/components": "^8.6.
|
|
91
|
+
"@storybook/components": "^8.6.12",
|
|
88
92
|
"@storybook/manager-api": "^8.6.12",
|
|
89
93
|
"@storybook/preview-api": "^8.6.12",
|
|
90
|
-
"@storybook/react": "^8.6.
|
|
91
|
-
"@storybook/react-vite": "^8.6.
|
|
92
|
-
"@storybook/test": "^8.6.
|
|
93
|
-
"@storybook/types": "^8.6.
|
|
94
|
+
"@storybook/react": "^8.6.12",
|
|
95
|
+
"@storybook/react-vite": "^8.6.12",
|
|
96
|
+
"@storybook/test": "^8.6.12",
|
|
97
|
+
"@storybook/types": "^8.6.12",
|
|
94
98
|
"@svgr/cli": "^8.1.0",
|
|
95
99
|
"@svgr/core": "^8.1.0",
|
|
96
100
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
97
101
|
"@svgr/plugin-prettier": "^8.1.0",
|
|
98
102
|
"@svgr/plugin-svgo": "^8.1.0",
|
|
99
103
|
"@testing-library/jest-dom": "^6.6.3",
|
|
100
|
-
"@testing-library/react": "^16.
|
|
104
|
+
"@testing-library/react": "^16.3.0",
|
|
101
105
|
"@types/big.js": "^6.2.2",
|
|
102
106
|
"@types/eslint__js": "^9.14.0",
|
|
103
107
|
"@types/jest": "^29.5.14",
|
|
@@ -106,45 +110,45 @@
|
|
|
106
110
|
"@types/react-dom": "^19.x.x",
|
|
107
111
|
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
108
112
|
"@types/stringify-object": "^4.0.4",
|
|
109
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
110
|
-
"@typescript-eslint/parser": "^8.
|
|
113
|
+
"@typescript-eslint/eslint-plugin": "^8.32.0",
|
|
114
|
+
"@typescript-eslint/parser": "^8.32.0",
|
|
111
115
|
"chalk": "^4.1.2",
|
|
112
|
-
"core-js": "^3.
|
|
116
|
+
"core-js": "^3.42.0",
|
|
113
117
|
"cross-var": "^1.1.0",
|
|
114
118
|
"dotenv-cli": "^8.0.0",
|
|
115
|
-
"eslint": "^9.
|
|
116
|
-
"eslint-config-prettier": "^10.
|
|
117
|
-
"eslint-plugin-check-file": "^3.
|
|
119
|
+
"eslint": "^9.25.1",
|
|
120
|
+
"eslint-config-prettier": "^10.1.5",
|
|
121
|
+
"eslint-plugin-check-file": "^3.2.0",
|
|
118
122
|
"eslint-plugin-import": "^2.31.0",
|
|
119
123
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
120
|
-
"eslint-plugin-prettier": "5.
|
|
121
|
-
"eslint-plugin-react": "^7.37.
|
|
124
|
+
"eslint-plugin-prettier": "5.4.0",
|
|
125
|
+
"eslint-plugin-react": "^7.37.5",
|
|
122
126
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
123
127
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
124
128
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
125
129
|
"framer-motion": "^10.16.4",
|
|
126
|
-
"globals": "^16.
|
|
130
|
+
"globals": "^16.1.0",
|
|
127
131
|
"identity-obj-proxy": "^3.0.0",
|
|
128
132
|
"jest": "^29.4.0",
|
|
129
133
|
"pnpapi": "^0.0.0",
|
|
130
134
|
"prettier": "^3.5.3",
|
|
131
135
|
"prop-types": "^15.8.1",
|
|
132
|
-
"react": "^18.
|
|
133
|
-
"react-dom": "^18.
|
|
136
|
+
"react": "^18.x.x",
|
|
137
|
+
"react-dom": "^18.x.x",
|
|
134
138
|
"react-imask": "^7.6.1",
|
|
135
|
-
"rollup": "^4.
|
|
139
|
+
"rollup": "^4.40.2",
|
|
136
140
|
"rollup-plugin-delete": "^3.0.1",
|
|
137
|
-
"rollup-plugin-dts": "^6.
|
|
141
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
138
142
|
"rollup-plugin-filesize": "^10.0.0",
|
|
139
143
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
140
144
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
141
145
|
"rollup-plugin-visualizer": "^5.14.0",
|
|
142
|
-
"storybook": "^8.6.
|
|
146
|
+
"storybook": "^8.6.12",
|
|
143
147
|
"stringify-object": "^5.0.0",
|
|
144
|
-
"ts-jest": "^29.2
|
|
145
|
-
"typescript": "^5.8.
|
|
146
|
-
"typescript-eslint": "^8.
|
|
147
|
-
"vite": "^6.
|
|
148
|
+
"ts-jest": "^29.3.2",
|
|
149
|
+
"typescript": "^5.8.3",
|
|
150
|
+
"typescript-eslint": "^8.32.0",
|
|
151
|
+
"vite": "^6.3.5"
|
|
148
152
|
},
|
|
149
153
|
"packageManager": "yarn@4.6.0"
|
|
150
154
|
}
|