@tight-embedded/react 6.1.0 → 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 +247 -221
- 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 +9 -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.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -54,7 +54,6 @@
|
|
|
54
54
|
"@cypress/code-coverage": "^3.14.7",
|
|
55
55
|
"@eslint/js": "^9.18.0",
|
|
56
56
|
"@pandacss/dev": "^1.8.0",
|
|
57
|
-
"@pandacss/eslint-plugin": "^0.3.0",
|
|
58
57
|
"@redux-devtools/extension": "^3.3.0",
|
|
59
58
|
"@rollup/plugin-terser": "^0.4.4",
|
|
60
59
|
"@stylistic/eslint-plugin": "^5.5.0",
|
|
@@ -75,6 +74,7 @@
|
|
|
75
74
|
"@vitest/ui": "^3.2.4",
|
|
76
75
|
"aws-lambda": "^1.0.7",
|
|
77
76
|
"cypress": "^15.5.0",
|
|
77
|
+
"eslint": "^9.23.0",
|
|
78
78
|
"fake-indexeddb": "^6.2.2",
|
|
79
79
|
"global-jsdom": "^26.0.0",
|
|
80
80
|
"gulp": "^5.0.0",
|
|
@@ -96,14 +96,15 @@
|
|
|
96
96
|
"vite-plugin-dts": "^4.5.4",
|
|
97
97
|
"vite-plugin-istanbul": "^7.2.1",
|
|
98
98
|
"vite-plugin-svgr": "^4.3.0",
|
|
99
|
-
"vitest": "^3.2.4"
|
|
99
|
+
"vitest": "^3.2.4",
|
|
100
|
+
"@tight-embedded/eslint-config": "0.0.0"
|
|
100
101
|
},
|
|
101
102
|
"nyc": {
|
|
102
103
|
"check-coverage": true,
|
|
103
|
-
"branches":
|
|
104
|
-
"functions":
|
|
105
|
-
"lines":
|
|
106
|
-
"statements":
|
|
104
|
+
"branches": 30,
|
|
105
|
+
"functions": 30,
|
|
106
|
+
"lines": 30,
|
|
107
|
+
"statements": 30
|
|
107
108
|
},
|
|
108
109
|
"scripts": {
|
|
109
110
|
"setup": "chmod -R +x ./scripts",
|
|
@@ -119,6 +120,7 @@
|
|
|
119
120
|
"test": "vitest run --reporter=default --reporter=html --outputFile=./vitest/output/index.html",
|
|
120
121
|
"vitest-coverage": "vitest run --coverage",
|
|
121
122
|
"cytest": "cypress open",
|
|
123
|
+
"cypress:component": "cypress run --component --config screenshotOnRunFailure=false",
|
|
122
124
|
"api-update": "./scripts/api-update.sh",
|
|
123
125
|
"coverage": "./scripts/coverage.sh",
|
|
124
126
|
"check-coverage": "./scripts/check-coverage.sh"
|