@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.
- package/.turbo/turbo-build.log +4 -0
- package/.turbo/turbo-check-types.log +4 -0
- package/CHANGELOG.md +19 -0
- package/eslint.config.mjs +3 -0
- package/package.json +11 -9
- package/src/subnav/index.tsx +1 -1
- package/.eslintrc.js +0 -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
|
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.
|
|
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": "^
|
|
19
|
-
"@types/react-dom": "^
|
|
20
|
-
"eslint": "^
|
|
21
|
-
"next": "^
|
|
22
|
-
"react": "^
|
|
23
|
-
"
|
|
24
|
-
"
|
|
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.
|
|
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
|
}
|
package/src/subnav/index.tsx
CHANGED
package/.eslintrc.js
DELETED