@tight-embedded/react 1.0.1 → 1.2.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.css +530 -213
- package/dist/index.css.gz +0 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +1 -3382
- package/dist/index.js.gz +0 -0
- package/dist/index.js.map +1 -1
- package/dist/index.js.map.gz +0 -0
- package/package.json +24 -14
package/dist/index.js.map.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tight-embedded/react",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -26,8 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@floating-ui/react": "^0.27.4",
|
|
29
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
|
29
30
|
"@tanstack/query-sync-storage-persister": "^5.64.1",
|
|
30
|
-
"@tanstack/react-form": "^1.
|
|
31
|
+
"@tanstack/react-form": "^1.23.8",
|
|
31
32
|
"@tanstack/react-query": "^5.64.1",
|
|
32
33
|
"@tanstack/react-query-devtools": "^5.64.1",
|
|
33
34
|
"@tanstack/react-query-persist-client": "^5.64.1",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
49
|
"@csstools/postcss-cascade-layers": "^5.0.2",
|
|
50
|
+
"@cypress/code-coverage": "^3.14.7",
|
|
49
51
|
"@eslint/js": "^9.18.0",
|
|
50
52
|
"@pandacss/dev": "^1.1.0",
|
|
51
53
|
"@pandacss/eslint-plugin": "^0.2.14",
|
|
@@ -59,25 +61,22 @@
|
|
|
59
61
|
"@types/aws-lambda": "^8.10.147",
|
|
60
62
|
"@types/big.js": "^6.2.2",
|
|
61
63
|
"@types/lodash-es": "^4.17.12",
|
|
62
|
-
"@types/node": "^24.
|
|
64
|
+
"@types/node": "^24.10.1",
|
|
63
65
|
"@types/react": "^18.3.24",
|
|
64
66
|
"@types/react-dom": "^18.3.7",
|
|
65
|
-
"@vitejs/plugin-react": "^5.1.
|
|
67
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
66
68
|
"@vitest/browser": "^3.2.4",
|
|
69
|
+
"@vitest/coverage-istanbul": "3.2.4",
|
|
67
70
|
"@vitest/coverage-v8": "^3.2.4",
|
|
68
71
|
"@vitest/ui": "^3.2.4",
|
|
69
72
|
"aws-lambda": "^1.0.7",
|
|
70
73
|
"cypress": "^15.5.0",
|
|
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
74
|
"fake-indexeddb": "^6.2.2",
|
|
77
75
|
"global-jsdom": "^26.0.0",
|
|
78
76
|
"gulp": "^5.0.0",
|
|
79
77
|
"husky": "^9.1.7",
|
|
80
78
|
"jsdom": "^26.1.0",
|
|
79
|
+
"nyc": "^17.1.0",
|
|
81
80
|
"openapi-typescript": "^7.6.1",
|
|
82
81
|
"playwright": "^1.54.1",
|
|
83
82
|
"react": "^18.3.1",
|
|
@@ -85,26 +84,37 @@
|
|
|
85
84
|
"terser": "^5.30.3",
|
|
86
85
|
"typescript": "^5.9.3",
|
|
87
86
|
"typescript-eslint": "^8.46.2",
|
|
88
|
-
"vite": "^7.
|
|
87
|
+
"vite": "^7.2.4",
|
|
89
88
|
"vite-bundle-visualizer": "^1.2.1",
|
|
90
89
|
"vite-plugin-bugsnag": "^2.0.2",
|
|
91
90
|
"vite-plugin-compression2": "^1.0.0",
|
|
92
91
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
93
92
|
"vite-plugin-dts": "^4.5.4",
|
|
93
|
+
"vite-plugin-istanbul": "^7.2.1",
|
|
94
94
|
"vite-plugin-svgr": "^4.3.0",
|
|
95
95
|
"vitest": "^3.2.4"
|
|
96
96
|
},
|
|
97
|
+
"nyc": {
|
|
98
|
+
"check-coverage": true,
|
|
99
|
+
"branches": 40,
|
|
100
|
+
"functions": 45,
|
|
101
|
+
"lines": 50,
|
|
102
|
+
"statements": 50
|
|
103
|
+
},
|
|
97
104
|
"scripts": {
|
|
98
105
|
"setup": "chmod -R +x ./scripts",
|
|
99
|
-
"dev": "pnpm run setup &&
|
|
106
|
+
"dev": "pnpm run setup && pnpm install && panda codegen --clean && vite dev --port 5353",
|
|
100
107
|
"typecheck": "./scripts/typecheck.sh -w false",
|
|
101
108
|
"build": "./scripts/build.sh",
|
|
109
|
+
"build:lab": "./scripts/buildLab.sh",
|
|
110
|
+
"build:playground": "../../apps/playground/scripts/buildPlayground.sh",
|
|
102
111
|
"analyze": "./scripts/analyze.sh",
|
|
103
|
-
"simulate": "./scripts/simulate.sh",
|
|
104
112
|
"lint": "./scripts/lint.sh",
|
|
105
113
|
"test": "vitest run --reporter=default --reporter=html --outputFile=./vitest/output/index.html",
|
|
106
|
-
"coverage": "vitest run --coverage",
|
|
114
|
+
"vitest-coverage": "vitest run --coverage",
|
|
107
115
|
"cytest": "cypress open",
|
|
108
|
-
"api-update": "./scripts/api-update.sh"
|
|
116
|
+
"api-update": "./scripts/api-update.sh",
|
|
117
|
+
"coverage": "./scripts/coverage.sh",
|
|
118
|
+
"check-coverage": "./scripts/check-coverage.sh"
|
|
109
119
|
}
|
|
110
120
|
}
|