funuicss 3.9.14 → 3.9.16
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/package.json +3 -3
- package/ui/appbar/AppBar.js +2 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.9.
|
|
2
|
+
"version": "3.9.16",
|
|
3
3
|
"name": "funuicss",
|
|
4
4
|
"description": "React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting both seamless functionality and aesthetic appeal—all achieved with minimal lines of code. Unleash the power of simplicity and style in your projects!",
|
|
5
5
|
"main": "index.js",
|
|
@@ -55,7 +55,8 @@
|
|
|
55
55
|
"react-intersection-observer": "^9.16.0",
|
|
56
56
|
"react-quilljs": "^2.0.5",
|
|
57
57
|
"recharts": "^2.15.3",
|
|
58
|
-
"tinycolor2": "^1.6.0"
|
|
58
|
+
"tinycolor2": "^1.6.0",
|
|
59
|
+
"video.js": "^8.23.4"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@babel/core": "^7.22.11",
|
|
@@ -71,7 +72,6 @@
|
|
|
71
72
|
"style-loader": "^3.3.3",
|
|
72
73
|
"ts-loader": "^9.4.4",
|
|
73
74
|
"typescript": "^5.3.3",
|
|
74
|
-
"video.js": "^8.23.4",
|
|
75
75
|
"webpack": "^5.88.2",
|
|
76
76
|
"webpack-cli": "^5.1.4"
|
|
77
77
|
}
|
package/ui/appbar/AppBar.js
CHANGED
|
@@ -287,8 +287,8 @@ function AppBar(localProps) {
|
|
|
287
287
|
isMobileScreen && isMobileMenuOpen && !final.visibleLinks && ( // Only show close button when not in visibleLinks mode
|
|
288
288
|
React.createElement("div", { className: "hover-text-error pointer _closeNav", onClick: closeMenu },
|
|
289
289
|
React.createElement(Trigger, { isOpen: isMobileMenuOpen })))),
|
|
290
|
-
React.createElement("div", { className: "linkWrapper" }, renderCenterSection()),
|
|
291
|
-
React.createElement("div", { className: "linkWrapper" }, renderRightSection()),
|
|
290
|
+
React.createElement("div", { className: "linkWrapper ".concat(final.visibleLinks ? 'navbar-links-visible' : '') }, renderCenterSection()),
|
|
291
|
+
React.createElement("div", { className: "linkWrapper ".concat(final.visibleLinks ? 'navbar-links-visible' : '') }, renderRightSection()),
|
|
292
292
|
isMobileScreen && !isMobileMenuOpen && !final.visibleLinks && (React.createElement(React.Fragment, null, final.hasSidebar ?
|
|
293
293
|
React.createElement("span", { className: "sidebar-trigger pointer hover-text-primary", onClick: final.openSidebar }, final.sidebarTrigger || React.createElement(Trigger, { isOpen: final.sidebarOpen }))
|
|
294
294
|
:
|