@layerfi/components 0.1.76 → 0.1.78
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/.eslintrc.js +41 -12
- package/.vscode/settings.json +14 -0
- package/LICENSE +33 -21
- package/dist/{index.js → cjs/index.cjs} +2818 -2150
- package/dist/esm/{index.js → index.mjs} +2863 -2191
- package/dist/{styles → esm/styles}/index.css +320 -37
- package/dist/index.css +7999 -0
- package/dist/index.d.ts +631 -347
- package/package.json +27 -16
- package/.prettierrc.json +0 -21
- package/dist/esm/index.js.map +0 -7
- package/dist/index.js.map +0 -7
- package/dist/styles/index.css.map +0 -7
package/package.json
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layerfi/components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.78",
|
|
4
4
|
"description": "Layer React Components",
|
|
5
|
-
"main": "dist/index.
|
|
5
|
+
"main": "dist/cjs/index.cjs",
|
|
6
|
+
"module": "dist/esm/index.mjs",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"style": "dist/styles.css",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/esm/index.mjs",
|
|
13
|
+
"require": "./dist/cjs/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./index.css": "./dist/index.css"
|
|
16
|
+
},
|
|
7
17
|
"scripts": {
|
|
8
18
|
"test": "jest",
|
|
9
19
|
"typecheck": "tsc --noEmit",
|
|
10
20
|
"build": "node bin/build.js",
|
|
21
|
+
"dev": "node bin/build.js -- --watch",
|
|
11
22
|
"prepack": "npm run typecheck && npm run build",
|
|
12
23
|
"lint": "eslint .",
|
|
13
24
|
"lint:fix": "eslint . --fix"
|
|
@@ -22,52 +33,52 @@
|
|
|
22
33
|
"react"
|
|
23
34
|
],
|
|
24
35
|
"author": "Layer Financial",
|
|
25
|
-
"license": "
|
|
36
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
26
37
|
"bugs": {
|
|
27
38
|
"url": "https://github.com/Layer-Fi/layer-react/issues"
|
|
28
39
|
},
|
|
29
40
|
"homepage": "https://github.com/Layer-Fi/layer-react#readme",
|
|
30
41
|
"peerDependencies": {
|
|
31
|
-
"react": "^18.2.0"
|
|
42
|
+
"react": "^18.2.0",
|
|
43
|
+
"react-dom": "^18.2.0"
|
|
32
44
|
},
|
|
33
45
|
"devDependencies": {
|
|
46
|
+
"@stylistic/eslint-plugin": "^2.10.0",
|
|
34
47
|
"@testing-library/jest-dom": "^6.1.4",
|
|
35
48
|
"@testing-library/react": "^14.0.0",
|
|
36
49
|
"@testing-library/user-event": "^14.5.1",
|
|
37
|
-
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
|
|
38
50
|
"@types/jest": "^29.5.7",
|
|
39
|
-
"@types/react": "^18.2.
|
|
51
|
+
"@types/react": "^18.2.0",
|
|
40
52
|
"@types/react-datepicker": "^6.2.0",
|
|
41
|
-
"@types/react-dom": "^18.2.
|
|
53
|
+
"@types/react-dom": "^18.2.0",
|
|
42
54
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
43
55
|
"esbuild": "^0.19.5",
|
|
44
56
|
"esbuild-jest": "^0.5.0",
|
|
45
57
|
"esbuild-sass-plugin": "^2.16.0",
|
|
46
|
-
"eslint": "^8.
|
|
47
|
-
"eslint-plugin-
|
|
48
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
49
|
-
"eslint-plugin-react": "^7.33.2",
|
|
58
|
+
"eslint": "^8.57.0",
|
|
59
|
+
"eslint-plugin-react": "^7.37.2",
|
|
50
60
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
61
|
+
"eslint-plugin-unused-imports": "^3.2.0",
|
|
51
62
|
"jest": "^29.7.0",
|
|
52
63
|
"jest-environment-jsdom": "^29.7.0",
|
|
53
64
|
"jsdom": "^22.1.0",
|
|
54
65
|
"npm-dts": "^1.3.12",
|
|
55
|
-
"postcss": "^8.4.31",
|
|
56
|
-
"postcss-scss": "^4.0.9",
|
|
57
|
-
"prettier": "^3.0.3",
|
|
58
66
|
"react": "^18.2.0",
|
|
59
67
|
"react-dom": "^18.2.0",
|
|
60
|
-
"typescript": "^5.
|
|
68
|
+
"typescript": "^5.6.3"
|
|
61
69
|
},
|
|
62
70
|
"dependencies": {
|
|
63
71
|
"@floating-ui/react": "^0.26.8",
|
|
64
72
|
"classnames": "^2.5.1",
|
|
65
73
|
"date-fns": "^2.30.0",
|
|
74
|
+
"lucide-react": "^0.454.0",
|
|
75
|
+
"react-aria-components": "^1.4.1",
|
|
66
76
|
"react-datepicker": "^6.9.0",
|
|
67
77
|
"react-plaid-link": "^3.5.1",
|
|
68
78
|
"react-select": "^5.8.0",
|
|
69
79
|
"recharts": "^2.10.1",
|
|
70
|
-
"swr": "^2.2.4"
|
|
80
|
+
"swr": "^2.2.4",
|
|
81
|
+
"zustand": "^5.0.1"
|
|
71
82
|
},
|
|
72
83
|
"jest": {
|
|
73
84
|
"testEnvironment": "jsdom",
|
package/.prettierrc.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"semi": false,
|
|
3
|
-
"printWidth": 80,
|
|
4
|
-
"tabWidth": 2,
|
|
5
|
-
"singleQuote": true,
|
|
6
|
-
"bracketSpacing": true,
|
|
7
|
-
"bracketSameLine": false,
|
|
8
|
-
"useTabs": false,
|
|
9
|
-
"arrowParens": "avoid",
|
|
10
|
-
"jsxSingleQuote": true,
|
|
11
|
-
"trailingComma": "all",
|
|
12
|
-
"importOrder": [
|
|
13
|
-
"^react.*",
|
|
14
|
-
"<THIRD_PARTY_MODULES>",
|
|
15
|
-
"^src",
|
|
16
|
-
"^\\.\\./', ^\\./"
|
|
17
|
-
],
|
|
18
|
-
"plugins": [
|
|
19
|
-
"@trivago/prettier-plugin-sort-imports"
|
|
20
|
-
]
|
|
21
|
-
}
|