@tight-embedded/react 1.0.0-alpha.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/README.md +11 -0
- package/dist/duplet.css +60 -0
- package/dist/duplet.css.gz +0 -0
- package/dist/fonts/Duplet-Bold.woff +0 -0
- package/dist/fonts/Duplet-Bold.woff.gz +0 -0
- package/dist/fonts/Duplet-Bold.woff2 +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff.gz +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff2 +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff2.gz +0 -0
- package/dist/fonts/Duplet-Italic.woff +0 -0
- package/dist/fonts/Duplet-Italic.woff.gz +0 -0
- package/dist/fonts/Duplet-Italic.woff2 +0 -0
- package/dist/fonts/Duplet-Regular.woff +0 -0
- package/dist/fonts/Duplet-Regular.woff.gz +0 -0
- package/dist/fonts/Duplet-Regular.woff2 +0 -0
- package/dist/fonts/Duplet-Semibold.woff +0 -0
- package/dist/fonts/Duplet-Semibold.woff.gz +0 -0
- package/dist/fonts/Duplet-Semibold.woff2 +0 -0
- package/dist/fonts/Duplet-SemiboldItalic.woff +0 -0
- package/dist/fonts/Duplet-SemiboldItalic.woff.gz +0 -0
- package/dist/fonts/Duplet-SemiboldItalic.woff2 +0 -0
- package/dist/fonts/Inter-Bold.ttf +0 -0
- package/dist/fonts/Inter-Bold.ttf.gz +0 -0
- package/dist/fonts/Inter-ExtraLight.ttf +0 -0
- package/dist/fonts/Inter-ExtraLight.ttf.gz +0 -0
- package/dist/fonts/Inter-Light.ttf +0 -0
- package/dist/fonts/Inter-Light.ttf.gz +0 -0
- package/dist/fonts/Inter-Medium.ttf +0 -0
- package/dist/fonts/Inter-Medium.ttf.gz +0 -0
- package/dist/fonts/Inter-Regular.ttf +0 -0
- package/dist/fonts/Inter-Regular.ttf.gz +0 -0
- package/dist/fonts/Inter-SemiBold.ttf +0 -0
- package/dist/fonts/Inter-SemiBold.ttf.gz +0 -0
- package/dist/index.css +2974 -0
- package/dist/index.css.gz +0 -0
- package/dist/index.d.ts +81 -0
- package/dist/index.js +3285 -0
- package/dist/index.js.gz +0 -0
- package/dist/index.js.map +1 -0
- package/dist/index.js.map.gz +0 -0
- package/dist/inter.css +36 -0
- package/dist/inter.css.gz +0 -0
- package/package.json +110 -0
|
Binary file
|
package/dist/inter.css
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Inter';
|
|
3
|
+
src: url('./fonts/Inter-ExtraLight.ttf') format('truetype');
|
|
4
|
+
font-weight: 200;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
}
|
|
7
|
+
@font-face {
|
|
8
|
+
font-family: 'Inter';
|
|
9
|
+
src: url('./fonts/Inter-Light.ttf') format('truetype');
|
|
10
|
+
font-weight: 300;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
}
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: 'Inter';
|
|
15
|
+
src: url('./fonts/Inter-Regular.ttf') format('truetype');
|
|
16
|
+
font-weight: 400;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
}
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: 'Inter';
|
|
21
|
+
src: url('./fonts/Inter-Medium.ttf') format('truetype');
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
}
|
|
25
|
+
@font-face {
|
|
26
|
+
font-family: 'Inter';
|
|
27
|
+
src: url('./fonts/Inter-SemiBold.ttf') format('truetype');
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
font-style: normal;
|
|
30
|
+
}
|
|
31
|
+
@font-face {
|
|
32
|
+
font-family: 'Inter';
|
|
33
|
+
src: url('./fonts/Inter-Bold.ttf') format('truetype');
|
|
34
|
+
font-weight: 700;
|
|
35
|
+
font-style: normal;
|
|
36
|
+
}
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tight-embedded/react",
|
|
3
|
+
"version": "1.0.0-alpha.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.umd.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"require": "./dist/index.umd.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./index.css": "./dist/index.css",
|
|
19
|
+
"./duplet.css": "./dist/duplet.css",
|
|
20
|
+
"./inter.css": "./dist/inter.css"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"react": "^18.3.1 || ^19.0.0",
|
|
24
|
+
"react-dom": "^18.3.1 || ^19.0.0",
|
|
25
|
+
"react-plaid-link": "^4.1.1"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@floating-ui/react": "^0.27.4",
|
|
29
|
+
"@tanstack/query-sync-storage-persister": "^5.64.1",
|
|
30
|
+
"@tanstack/react-form": "^1.12.3",
|
|
31
|
+
"@tanstack/react-query": "^5.64.1",
|
|
32
|
+
"@tanstack/react-query-devtools": "^5.64.1",
|
|
33
|
+
"@tanstack/react-query-persist-client": "^5.64.1",
|
|
34
|
+
"@tanstack/react-table": "^8.21.3",
|
|
35
|
+
"big.js": "^7.0.1",
|
|
36
|
+
"fuse.js": "^7.1.0",
|
|
37
|
+
"idb": "^8.0.2",
|
|
38
|
+
"lodash-es": "^4.17.21",
|
|
39
|
+
"react-confirm": "^0.4.0",
|
|
40
|
+
"react-number-format": "^5.4.4",
|
|
41
|
+
"recharts": "^3.1.2",
|
|
42
|
+
"uuid": "^11.1.0",
|
|
43
|
+
"yocto-queue": "^1.1.1",
|
|
44
|
+
"zod": "^4.1.9",
|
|
45
|
+
"zustand": "^5.0.3"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@csstools/postcss-cascade-layers": "^5.0.2",
|
|
49
|
+
"@eslint/js": "^9.18.0",
|
|
50
|
+
"@pandacss/dev": "^1.1.0",
|
|
51
|
+
"@redux-devtools/extension": "^3.3.0",
|
|
52
|
+
"@pandacss/eslint-plugin": "^0.2.12",
|
|
53
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
54
|
+
"@stylistic/eslint-plugin": "^4.2.0",
|
|
55
|
+
"@tanstack/eslint-plugin-query": "^5.62.16",
|
|
56
|
+
"@testing-library/dom": "^10.4.0",
|
|
57
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
58
|
+
"@testing-library/react": "^16.3.0",
|
|
59
|
+
"@types/aws-lambda": "^8.10.147",
|
|
60
|
+
"@types/big.js": "^6.2.2",
|
|
61
|
+
"@types/lodash-es": "^4.17.12",
|
|
62
|
+
"@types/node": "^20.11.17",
|
|
63
|
+
"@types/react": "^18.3.24",
|
|
64
|
+
"@types/react-dom": "^18.3.7",
|
|
65
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
66
|
+
"@vitest/browser": "^3.2.4",
|
|
67
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
68
|
+
"@vitest/ui": "^3.2.4",
|
|
69
|
+
"aws-lambda": "^1.0.7",
|
|
70
|
+
"cypress": "^14.4.1",
|
|
71
|
+
"eslint": "^9.23.0",
|
|
72
|
+
"eslint-plugin-import": "^2.32.0",
|
|
73
|
+
"eslint-plugin-react": "^7.37.4",
|
|
74
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
75
|
+
"eslint-plugin-react-refresh": "^0.4.18",
|
|
76
|
+
"fake-indexeddb": "^6.2.2",
|
|
77
|
+
"global-jsdom": "^26.0.0",
|
|
78
|
+
"gulp": "^5.0.0",
|
|
79
|
+
"husky": "^9.1.7",
|
|
80
|
+
"jsdom": "^26.1.0",
|
|
81
|
+
"openapi-typescript": "^7.6.1",
|
|
82
|
+
"playwright": "^1.54.1",
|
|
83
|
+
"react": "^18.3.1",
|
|
84
|
+
"react-dom": "^18.3.1",
|
|
85
|
+
"terser": "^5.30.3",
|
|
86
|
+
"typescript": "^5.8.3",
|
|
87
|
+
"typescript-eslint": "^8.34.0",
|
|
88
|
+
"vite": "^6.3.5",
|
|
89
|
+
"vite-bundle-visualizer": "^1.2.1",
|
|
90
|
+
"vite-plugin-bugsnag": "^2.0.2",
|
|
91
|
+
"vite-plugin-compression2": "^1.0.0",
|
|
92
|
+
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
93
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
94
|
+
"vite-plugin-dts": "^4.5.4",
|
|
95
|
+
"vitest": "^3.2.4"
|
|
96
|
+
},
|
|
97
|
+
"scripts": {
|
|
98
|
+
"setup": "chmod -R +x ./scripts",
|
|
99
|
+
"dev": "pnpm run setup && cp ./src/config/config_dev.ts ./src/config.ts && pnpm install && panda codegen --clean && vite dev --port 5353",
|
|
100
|
+
"typecheck": "./scripts/typecheck.sh -w false",
|
|
101
|
+
"build": "./scripts/build.sh",
|
|
102
|
+
"analyze": "./scripts/analyze.sh",
|
|
103
|
+
"simulate": "./scripts/simulate.sh",
|
|
104
|
+
"lint": "./scripts/lint.sh",
|
|
105
|
+
"test": "vitest run --reporter=default --reporter=html --outputFile=./vitest/output/index.html",
|
|
106
|
+
"coverage": "vitest run --coverage",
|
|
107
|
+
"cytest": "cypress open",
|
|
108
|
+
"api-update": "./scripts/api-update.sh"
|
|
109
|
+
}
|
|
110
|
+
}
|