@julseb-lib/react 1.0.2 → 1.0.4
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/dist/index.cjs +56 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +56 -40
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +4 -0
- package/dist/types/components-props.d.ts +4 -0
- package/package.json +28 -28
|
@@ -977,6 +977,8 @@ interface ILibHeaderBase extends LibComponentBase<HTMLDivElement> {
|
|
|
977
977
|
};
|
|
978
978
|
navDesktopPosition?: LibNavBurgerPosition;
|
|
979
979
|
navMobileVariant?: LibNavMobileVariant;
|
|
980
|
+
navMobileBackground?: LibAllColors;
|
|
981
|
+
headerOpenMobileBackground?: LibAllColors;
|
|
980
982
|
enableScrollingOpen?: boolean;
|
|
981
983
|
search?: LibHeaderSearch;
|
|
982
984
|
backgroundColor?: LibAllColors;
|
|
@@ -1063,6 +1065,8 @@ interface ILibMeta {
|
|
|
1063
1065
|
manifest?: string;
|
|
1064
1066
|
category?: string;
|
|
1065
1067
|
twitterCard?: "app" | "player" | "summary" | "summary_large_image";
|
|
1068
|
+
appleTouchIcon?: string;
|
|
1069
|
+
themeColor?: string;
|
|
1066
1070
|
children?: ReactChildren;
|
|
1067
1071
|
}
|
|
1068
1072
|
|
|
@@ -977,6 +977,8 @@ interface ILibHeaderBase extends LibComponentBase<HTMLDivElement> {
|
|
|
977
977
|
};
|
|
978
978
|
navDesktopPosition?: LibNavBurgerPosition;
|
|
979
979
|
navMobileVariant?: LibNavMobileVariant;
|
|
980
|
+
navMobileBackground?: LibAllColors;
|
|
981
|
+
headerOpenMobileBackground?: LibAllColors;
|
|
980
982
|
enableScrollingOpen?: boolean;
|
|
981
983
|
search?: LibHeaderSearch;
|
|
982
984
|
backgroundColor?: LibAllColors;
|
|
@@ -1063,6 +1065,8 @@ interface ILibMeta {
|
|
|
1063
1065
|
manifest?: string;
|
|
1064
1066
|
category?: string;
|
|
1065
1067
|
twitterCard?: "app" | "player" | "summary" | "summary_large_image";
|
|
1068
|
+
appleTouchIcon?: string;
|
|
1069
|
+
themeColor?: string;
|
|
1066
1070
|
children?: ReactChildren;
|
|
1067
1071
|
}
|
|
1068
1072
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@julseb-lib/react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"files": [
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"clsx": "^2.1.1",
|
|
24
24
|
"csstype": "^3.1.3",
|
|
25
25
|
"fuse.js": "^7.1.0",
|
|
26
|
-
"markdown-to-jsx": "^7.7.
|
|
26
|
+
"markdown-to-jsx": "^7.7.13",
|
|
27
27
|
"postcss": "^8.5.6",
|
|
28
28
|
"prism-react-renderer": "^2.4.1",
|
|
29
|
-
"react": "^19.1.
|
|
30
|
-
"react-dom": "^19.1.
|
|
29
|
+
"react": "^19.1.1",
|
|
30
|
+
"react-dom": "^19.1.1",
|
|
31
31
|
"react-icons": "^5.5.0",
|
|
32
|
-
"react-router-dom": "^7.
|
|
32
|
+
"react-router-dom": "^7.7.1",
|
|
33
33
|
"react-toastify": "^11.0.5",
|
|
34
34
|
"tailwind-merge": "^3.3.1",
|
|
35
35
|
"tailwindcss": "^4.1.11",
|
|
36
|
-
"tailwindest": "^3.2.
|
|
36
|
+
"tailwindest": "^3.2.2"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": ">=18.0.0 <20.0.0 || ^19.0.0",
|
|
@@ -41,42 +41,42 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@eslint/compat": "^1.3.1",
|
|
44
|
-
"@eslint/js": "^9.
|
|
45
|
-
"@react-docgen/cli": "^3.0.
|
|
44
|
+
"@eslint/js": "^9.32.0",
|
|
45
|
+
"@react-docgen/cli": "^3.0.1",
|
|
46
46
|
"@types/figlet": "^1.7.0",
|
|
47
|
-
"@types/node": "^24.0
|
|
48
|
-
"@types/react": "^
|
|
49
|
-
"@types/react-dom": "^
|
|
47
|
+
"@types/node": "^24.2.0",
|
|
48
|
+
"@types/react": "^19.1.9",
|
|
49
|
+
"@types/react-dom": "^19.1.7",
|
|
50
50
|
"@types/react-router-dom": "^5.3.3",
|
|
51
51
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
53
|
-
"@typescript-eslint/parser": "^8.
|
|
54
|
-
"@vitejs/plugin-react": "^
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.39.0",
|
|
53
|
+
"@typescript-eslint/parser": "^8.39.0",
|
|
54
|
+
"@vitejs/plugin-react": "^5.0.0",
|
|
55
55
|
"autoprefixer": "^10.4.21",
|
|
56
|
-
"axios": "^1.
|
|
57
|
-
"chalk": "^5.
|
|
58
|
-
"cross-env": "^
|
|
56
|
+
"axios": "^1.11.0",
|
|
57
|
+
"chalk": "^5.5.0",
|
|
58
|
+
"cross-env": "^10.0.0",
|
|
59
59
|
"cssjson-cli": "^1.0.1",
|
|
60
|
-
"dotenv": "^17.
|
|
61
|
-
"eslint": "^9.
|
|
60
|
+
"dotenv": "^17.2.1",
|
|
61
|
+
"eslint": "^9.32.0",
|
|
62
62
|
"eslint-plugin-import": "^2.32.0",
|
|
63
63
|
"eslint-plugin-react": "^7.37.5",
|
|
64
64
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
65
65
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
66
|
-
"figlet": "^1.8.
|
|
66
|
+
"figlet": "^1.8.2",
|
|
67
67
|
"globals": "^16.3.0",
|
|
68
68
|
"plop": "^4.0.1",
|
|
69
69
|
"postcss": "^8.5.6",
|
|
70
70
|
"prettier": "^3.6.2",
|
|
71
|
-
"prettier-plugin-tailwindcss": "^0.6.
|
|
72
|
-
"react-router-dom": "^7.
|
|
73
|
-
"tailwindcss": "^
|
|
71
|
+
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
72
|
+
"react-router-dom": "^7.7.1",
|
|
73
|
+
"tailwindcss": "^4.1.11",
|
|
74
74
|
"tsup": "^8.5.0",
|
|
75
75
|
"tsx": "^4.20.3",
|
|
76
|
-
"typescript": "^5.
|
|
77
|
-
"typescript-eslint": "^8.
|
|
78
|
-
"vite": "^7.0
|
|
79
|
-
"vite-plugin-checker": "^0.
|
|
76
|
+
"typescript": "^5.9.2",
|
|
77
|
+
"typescript-eslint": "^8.39.0",
|
|
78
|
+
"vite": "^7.1.0",
|
|
79
|
+
"vite-plugin-checker": "^0.10.2",
|
|
80
80
|
"vite-plugin-dts": "^4.5.4",
|
|
81
81
|
"vite-plugin-eslint": "^1.8.1"
|
|
82
82
|
},
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
"types": "./dist/index.d.ts",
|
|
109
|
-
"packageManager": "pnpm@10.
|
|
109
|
+
"packageManager": "pnpm@10.14.0"
|
|
110
110
|
}
|