@dbosoft/nextjs-uicore 1.4.0 → 1.5.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.
@@ -0,0 +1,4 @@
1
+
2
+ > @dbosoft/nextjs-uicore@1.5.1 build F:\source\repos\dbosoft\web\react-components\packages\nextjs-uicore
3
+ > tsc --noEmit
4
+
@@ -0,0 +1,4 @@
1
+
2
+ > @dbosoft/nextjs-uicore@1.5.1 check-types F:\source\repos\dbosoft\web\react-components\packages\nextjs-uicore
3
+ > tsc --noEmit
4
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @dbosoft/nextjs-uicore
2
2
 
3
+ ## 1.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - react 19.x bug fixes
8
+ - Updated dependencies
9
+ - @dbosoft/react-uicore@1.3.1
10
+
11
+ ## 1.5.0
12
+
13
+ ### Minor Changes
14
+
15
+ - nextjs 16 / react 19 / tailwind 4 upgrade
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+ - @dbosoft/react-uicore@1.3.0
21
+
3
22
  ## 1.4.0
4
23
 
5
24
  ### 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.1",
6
6
  "sideEffects": false,
7
7
  "license": "MIT",
8
8
  "exports": {
@@ -15,14 +15,15 @@
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",
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
25
  "@dbosoft/web-types": "1.0.0",
26
+ "@dbosoft/eslint-config": "2.0.0",
26
27
  "@dbosoft/typescript-config": "1.1.0"
27
28
  },
28
29
  "publishConfig": {
@@ -33,9 +34,10 @@
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.1"
37
38
  },
38
39
  "scripts": {
40
+ "check-types": "tsc --noEmit",
39
41
  "lint": "eslint . --max-warnings 0",
40
42
  "clean": "rimraf .turbo && rimraf node_modules && rimraf dist"
41
43
  }
@@ -48,7 +48,7 @@ const defaultSubNavLabels: SubNavLabels = {
48
48
 
49
49
  interface ISubNavProps {
50
50
  titleLink?: ITitleLink,
51
- titleContent?: JSX.Element,
51
+ titleContent?: React.JSX.Element,
52
52
  ctaLinks: ICtaItem[],
53
53
  hideGithubStars: boolean
54
54
  menuItems: MenuItem[],
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
- };