@umituz/web-design-system 3.1.11 → 3.1.13
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/web-design-system",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Web Design System - Atomic Design components (Atoms, Molecules, Organisms, Templates) for React applications",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"./package.json": "./package.json"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
|
-
"typecheck": "
|
|
28
|
-
"lint": "
|
|
27
|
+
"typecheck": "tsc --noEmit",
|
|
28
|
+
"lint": "eslint .",
|
|
29
29
|
"version:patch": "npm version patch -m 'chore: release v%s'",
|
|
30
30
|
"version:minor": "npm version minor -m 'chore: release v%s'",
|
|
31
31
|
"version:major": "npm version major -m 'chore: release v%s'"
|
|
@@ -113,7 +113,10 @@
|
|
|
113
113
|
"react-router-dom": "^6.22.0",
|
|
114
114
|
"react-syntax-highlighter": "^16.1.1",
|
|
115
115
|
"tailwind-merge": "^3.5.0",
|
|
116
|
-
"typescript": "~5.9.2"
|
|
116
|
+
"typescript": "~5.9.2",
|
|
117
|
+
"@eslint/js": "^9.32.0",
|
|
118
|
+
"eslint": "^9.32.0",
|
|
119
|
+
"typescript-eslint": "^8.38.0"
|
|
117
120
|
},
|
|
118
121
|
"publishConfig": {
|
|
119
122
|
"access": "public"
|
|
@@ -80,7 +80,7 @@ export function useBreakpoint(): UseBreakpointReturn {
|
|
|
80
80
|
});
|
|
81
81
|
|
|
82
82
|
// FIX: Use useRef for resize timer to prevent timer issues
|
|
83
|
-
const resizeTimerRef = useRef<ReturnType<typeof setTimeout
|
|
83
|
+
const resizeTimerRef = useRef<ReturnType<typeof setTimeout> | undefined>(undefined);
|
|
84
84
|
|
|
85
85
|
useEffect(() => {
|
|
86
86
|
const updateBreakpoint = () => {
|