@dbosoft/nextjs-uicore 1.4.0 → 1.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @dbosoft/nextjs-uicore
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - nextjs 16 / react 19 / tailwind 4 upgrade
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @dbosoft/react-uicore@1.3.0
13
+
3
14
  ## 1.4.0
4
15
 
5
16
  ### Minor Changes
@@ -0,0 +1,3 @@
1
+ import react from '@dbosoft/eslint-config/react'
2
+
3
+ export default [...react]
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@dbosoft/nextjs-uicore",
3
3
  "description": "Core UI components for Next.js",
4
4
  "author": "dbosoft",
5
- "version": "1.4.0",
5
+ "version": "1.5.0",
6
6
  "sideEffects": false,
7
7
  "license": "MIT",
8
8
  "exports": {
@@ -15,15 +15,16 @@
15
15
  "./translations": "./src/translations.ts"
16
16
  },
17
17
  "devDependencies": {
18
- "@types/react": "^18.3.18",
19
- "@types/react-dom": "^18.3.5",
20
- "eslint": "^8.56.0",
21
- "next": "^14.0.4",
22
- "react": "^18.2.0",
23
- "typescript": "^5.3.3",
24
- "@dbosoft/eslint-config": "1.0.0",
25
- "@dbosoft/web-types": "1.0.0",
26
- "@dbosoft/typescript-config": "1.1.0"
18
+ "@types/react": "^19.0.0",
19
+ "@types/react-dom": "^19.0.0",
20
+ "eslint": "^9.0.0",
21
+ "next": "^16.0.0",
22
+ "react": "^19.0.0",
23
+ "react-dom": "^19.0.0",
24
+ "typescript": "^5.8.0",
25
+ "@dbosoft/eslint-config": "2.0.0",
26
+ "@dbosoft/typescript-config": "1.1.0",
27
+ "@dbosoft/web-types": "1.0.0"
27
28
  },
28
29
  "publishConfig": {
29
30
  "access": "public"
@@ -33,7 +34,7 @@
33
34
  "@heroicons/react": ">=2.1.0",
34
35
  "clsx": ">=2.1.0",
35
36
  "next-themes": ">=0.4.3",
36
- "@dbosoft/react-uicore": "1.2.0"
37
+ "@dbosoft/react-uicore": "1.3.0"
37
38
  },
38
39
  "scripts": {
39
40
  "lint": "eslint . --max-warnings 0",
package/.eslintrc.js DELETED
@@ -1,4 +0,0 @@
1
- /** @type {import("eslint").Linter.Config} */
2
- module.exports = {
3
- extends: ["@dbosoft/eslint-config/react.js"],
4
- };