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