@tight-embedded/react 6.0.3 → 6.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 +351 -293
- package/dist/index.css.gz +0 -0
- package/dist/index.d.ts +19 -3
- package/dist/index.js +1 -1
- 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 +10 -7
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": "6.0
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"fuse.js": "^7.1.0",
|
|
41
41
|
"idb": "^8.0.2",
|
|
42
42
|
"lodash-es": "^4.17.21",
|
|
43
|
+
"motion": "^12.35.0",
|
|
43
44
|
"react-confirm": "^0.4.0",
|
|
44
45
|
"react-number-format": "^5.4.4",
|
|
45
46
|
"recharts": "^3.1.2",
|
|
@@ -53,7 +54,6 @@
|
|
|
53
54
|
"@cypress/code-coverage": "^3.14.7",
|
|
54
55
|
"@eslint/js": "^9.18.0",
|
|
55
56
|
"@pandacss/dev": "^1.8.0",
|
|
56
|
-
"@pandacss/eslint-plugin": "^0.3.0",
|
|
57
57
|
"@redux-devtools/extension": "^3.3.0",
|
|
58
58
|
"@rollup/plugin-terser": "^0.4.4",
|
|
59
59
|
"@stylistic/eslint-plugin": "^5.5.0",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"@vitest/ui": "^3.2.4",
|
|
75
75
|
"aws-lambda": "^1.0.7",
|
|
76
76
|
"cypress": "^15.5.0",
|
|
77
|
+
"eslint": "^9.23.0",
|
|
77
78
|
"fake-indexeddb": "^6.2.2",
|
|
78
79
|
"global-jsdom": "^26.0.0",
|
|
79
80
|
"gulp": "^5.0.0",
|
|
@@ -95,14 +96,15 @@
|
|
|
95
96
|
"vite-plugin-dts": "^4.5.4",
|
|
96
97
|
"vite-plugin-istanbul": "^7.2.1",
|
|
97
98
|
"vite-plugin-svgr": "^4.3.0",
|
|
98
|
-
"vitest": "^3.2.4"
|
|
99
|
+
"vitest": "^3.2.4",
|
|
100
|
+
"@tight-embedded/eslint-config": "0.0.0"
|
|
99
101
|
},
|
|
100
102
|
"nyc": {
|
|
101
103
|
"check-coverage": true,
|
|
102
|
-
"branches":
|
|
103
|
-
"functions":
|
|
104
|
-
"lines":
|
|
105
|
-
"statements":
|
|
104
|
+
"branches": 30,
|
|
105
|
+
"functions": 30,
|
|
106
|
+
"lines": 30,
|
|
107
|
+
"statements": 30
|
|
106
108
|
},
|
|
107
109
|
"scripts": {
|
|
108
110
|
"setup": "chmod -R +x ./scripts",
|
|
@@ -118,6 +120,7 @@
|
|
|
118
120
|
"test": "vitest run --reporter=default --reporter=html --outputFile=./vitest/output/index.html",
|
|
119
121
|
"vitest-coverage": "vitest run --coverage",
|
|
120
122
|
"cytest": "cypress open",
|
|
123
|
+
"cypress:component": "cypress run --component --config screenshotOnRunFailure=false",
|
|
121
124
|
"api-update": "./scripts/api-update.sh",
|
|
122
125
|
"coverage": "./scripts/coverage.sh",
|
|
123
126
|
"check-coverage": "./scripts/check-coverage.sh"
|