react-resize-detector-context 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -35,6 +35,7 @@ responsive breakpoints – all fully typed in TypeScript for excellent IDE suppo
35
35
  - [useBreakpoint Hook](#usebreakpoint-hook)
36
36
  - [Available Scripts](#available-scripts)
37
37
  - [Contribution Guidelines](#contribution-guidelines)
38
+ - [Roadmap](#roadmap)
38
39
  - [Changelog](#changelog)
39
40
  - [License](#license)
40
41
 
@@ -353,6 +354,12 @@ Let's build something awesome together! 🚀✨
353
354
 
354
355
  ---
355
356
 
357
+ ## Roadmap
358
+
359
+ Check out our [ROADMAP.md](./ROADMAP.md) to see what features are planned for future releases!
360
+
361
+ ---
362
+
356
363
  ## Changelog
357
364
 
358
365
  See [CHANGELOG.md](./CHANGELOG.md) for a list of changes.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-resize-detector-context",
3
3
  "description": "React context that detects element width and provides responsive breakpoint utilities with conditional rendering components",
4
- "version": "0.2.0",
4
+ "version": "0.2.1",
5
5
  "author": "Christopher Schwarz",
6
6
  "license": "MIT",
7
7
  "keywords": [
@@ -27,6 +27,7 @@
27
27
  "format": "prettier --write src",
28
28
  "test": "vitest",
29
29
  "test:ci": "vitest run --coverage",
30
+ "typecheck": "tsc --noEmit",
30
31
  "commit": "cz",
31
32
  "storybook": "storybook dev -p 6006",
32
33
  "storybook:build": "storybook build",
@@ -70,8 +71,8 @@
70
71
  "node": ">=18.0.0"
71
72
  },
72
73
  "devDependencies": {
73
- "@emotion/styled": "^11.15.0",
74
- "@eslint/js": "^9.31.0",
74
+ "@emotion/styled": "^11.14.1",
75
+ "@eslint/js": "^9.33.0",
75
76
  "@mui/material": "^6.4.3",
76
77
  "@ryansonshine/commitizen": "4.2.8",
77
78
  "@ryansonshine/cz-conventional-changelog": "3.3.4",
@@ -84,7 +85,7 @@
84
85
  "@storybook/react-webpack5": "8.6.14",
85
86
  "@storybook/test": "8.6.14",
86
87
  "@testing-library/jest-dom": "6.6.3",
87
- "@testing-library/react": "^16.1.0",
88
+ "@testing-library/react": "^16.3.0",
88
89
  "@types/node": "22.10.5",
89
90
  "@types/react": "18.3.13",
90
91
  "@types/react-dom": "18.3.1",
@@ -92,7 +93,7 @@
92
93
  "@types/testing-library__jest-dom": "^5.14.9",
93
94
  "@vitest/coverage-v8": "2.1.8",
94
95
  "concurrently": "9.1.2",
95
- "eslint": "^9.31.0",
96
+ "eslint": "^9.33.0",
96
97
  "eslint-plugin-react": "^7.37.5",
97
98
  "globals": "^15.14.0",
98
99
  "husky": "^9.1.7",
@@ -111,7 +112,7 @@
111
112
  "tsup": "8.3.5",
112
113
  "tsx": "4.19.2",
113
114
  "typescript": "5.7.2",
114
- "typescript-eslint": "^8.36.0",
115
+ "typescript-eslint": "^8.40.0",
115
116
  "vitest": "^2.1.8"
116
117
  },
117
118
  "peerDependencies": {
@@ -124,6 +125,6 @@
124
125
  }
125
126
  },
126
127
  "dependencies": {
127
- "react-resize-detector": "^12.0.2"
128
+ "react-resize-detector": "^12.1.0"
128
129
  }
129
130
  }