@cryptofi/core-ui 0.37.0 → 0.38.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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +3 -3
- package/package.json +8 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ declare const SvgIconCheck: _chakra_ui_system_dist_system_types.ChakraComponent<
|
|
|
47
47
|
declare const SvgIconChecking: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
48
48
|
//# sourceMappingURL=IconChecking.d.ts.map
|
|
49
49
|
|
|
50
|
-
declare const SvgIconCircleCheck: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
50
|
+
declare const SvgIconCircleCheck: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
51
51
|
//# sourceMappingURL=IconCircleCheck.d.ts.map
|
|
52
52
|
|
|
53
53
|
declare const SvgIconClose: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
@@ -62,7 +62,7 @@ declare const SvgIconCopy: _chakra_ui_system_dist_system_types.ChakraComponent<(
|
|
|
62
62
|
declare const SvgIconDollar: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
63
63
|
//# sourceMappingURL=IconDollar.d.ts.map
|
|
64
64
|
|
|
65
|
-
declare const SvgIconDollarBill: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
65
|
+
declare const SvgIconDollarBill: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
66
66
|
//# sourceMappingURL=IconDollarBill.d.ts.map
|
|
67
67
|
|
|
68
68
|
declare const SvgIconDownload: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
@@ -101,7 +101,7 @@ declare const SvgIconIndicatorUp: _chakra_ui_system_dist_system_types.ChakraComp
|
|
|
101
101
|
declare const SvgIconInfo: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
102
102
|
//# sourceMappingURL=IconInfo.d.ts.map
|
|
103
103
|
|
|
104
|
-
declare const SvgIconLock: _chakra_ui_system_dist_system_types.ChakraComponent<(props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
104
|
+
declare const SvgIconLock: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
|
105
105
|
//# sourceMappingURL=IconLock.d.ts.map
|
|
106
106
|
|
|
107
107
|
declare const SvgIconMail: _chakra_ui_system_dist_system_types.ChakraComponent<(props: IconProps & SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element, {}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptofi/core-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "CryptoFi"
|
|
6
6
|
},
|
|
@@ -14,9 +14,11 @@
|
|
|
14
14
|
"build:storybook": "storybook build --docs -o dist",
|
|
15
15
|
"dev": "yarn storybook dev --docs",
|
|
16
16
|
"format": "prettier --config ./.prettierrc -w '**/*.{tsx,ts,js,cjs,json,yml}' && git update-index --again",
|
|
17
|
-
"icons:
|
|
17
|
+
"icons:attrs": "node scripts/replaceIconAttrs.cjs",
|
|
18
18
|
"icons:clean": "npx rimraf './src/icons/**/Icon!(*.stories).tsx' ./src/icons/index.ts",
|
|
19
|
+
"icons:gen": "yarn icons:clean && yarn icons:prefix && yarn icons:svgr && yarn icons:attrs",
|
|
19
20
|
"icons:prefix": "node scripts/prefixIcons.cjs",
|
|
21
|
+
"icons:svgr": "npx @svgr/cli --out-dir ./src/icons -- ./svg-icons",
|
|
20
22
|
"lint": "eslint src --ext .tsx --ext .ts",
|
|
21
23
|
"lint:fix": "yarn lint --fix",
|
|
22
24
|
"posttest": "npx http-server coverage/lcov-report",
|
|
@@ -53,7 +55,7 @@
|
|
|
53
55
|
"react-currency-input-field": "^3.8.0",
|
|
54
56
|
"react-hook-form": "^7.51.0",
|
|
55
57
|
"recharts": "^2.12.2",
|
|
56
|
-
"yup": "^1.
|
|
58
|
+
"yup": "^1.4.0"
|
|
57
59
|
},
|
|
58
60
|
"devDependencies": {
|
|
59
61
|
"@babel/core": "^7.24.0",
|
|
@@ -90,12 +92,12 @@
|
|
|
90
92
|
"@types/react-dom": "^18.2.19",
|
|
91
93
|
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
92
94
|
"@types/stringify-object": "^4.0.4",
|
|
93
|
-
"@typescript-eslint/eslint-plugin": "^7.1.
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
|
94
96
|
"@typescript-eslint/parser": "^7.1.1",
|
|
95
97
|
"chalk": "4.1.2",
|
|
96
98
|
"core-js": "^3.36.0",
|
|
97
99
|
"cross-var": "^1.1.0",
|
|
98
|
-
"dotenv-cli": "^7.
|
|
100
|
+
"dotenv-cli": "^7.4.1",
|
|
99
101
|
"eslint": "^8.57.0",
|
|
100
102
|
"eslint-config-airbnb": "^19.0.4",
|
|
101
103
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -125,7 +127,7 @@
|
|
|
125
127
|
"storybook": "^7.6.12",
|
|
126
128
|
"stringify-object": "^5.0.0",
|
|
127
129
|
"ts-jest": "^29.0.5",
|
|
128
|
-
"typescript": "^5.
|
|
130
|
+
"typescript": "^5.4.2",
|
|
129
131
|
"vite": "^5.1.4"
|
|
130
132
|
},
|
|
131
133
|
"packageManager": "yarn@4.1.0"
|