@optifye/dashboard-core 6.5.11 → 6.6.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/global.css CHANGED
@@ -2,6 +2,64 @@
2
2
  @tailwind components;
3
3
  @tailwind utilities;
4
4
 
5
+ /* S-Tier Enhanced File Manager Styles */
6
+ @layer components {
7
+ /* Premium scrollbar styling */
8
+ .scrollbar-thin::-webkit-scrollbar {
9
+ width: 8px;
10
+ }
11
+ .scrollbar-thin::-webkit-scrollbar-track {
12
+ background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
13
+ border-radius: 8px;
14
+ margin: 4px;
15
+ }
16
+ .scrollbar-thin::-webkit-scrollbar-thumb {
17
+ background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
18
+ border-radius: 8px;
19
+ border: 2px solid #f8fafc;
20
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
21
+ }
22
+ .scrollbar-thin::-webkit-scrollbar-thumb:hover {
23
+ background: linear-gradient(to bottom, #94a3b8, #64748b);
24
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
25
+ }
26
+
27
+ /* Enhanced animations */
28
+ .animate-in {
29
+ animation: slideInScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
30
+ }
31
+
32
+ @keyframes slideInScale {
33
+ from {
34
+ opacity: 0;
35
+ transform: translateY(-8px) scale(0.98);
36
+ }
37
+ to {
38
+ opacity: 1;
39
+ transform: translateY(0) scale(1);
40
+ }
41
+ }
42
+
43
+ /* Subtle backdrop blur effect */
44
+ .backdrop-blur-sm {
45
+ backdrop-filter: blur(8px);
46
+ -webkit-backdrop-filter: blur(8px);
47
+ }
48
+
49
+ /* Enhanced focus states */
50
+ .focus-ring:focus {
51
+ outline: none;
52
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
53
+ border-color: #3b82f6;
54
+ }
55
+
56
+ /* Smooth scale transforms */
57
+ .transform-gpu {
58
+ transform: translateZ(0);
59
+ backface-visibility: hidden;
60
+ }
61
+ }
62
+
5
63
  /* Copied from app styles/globals.css so consumers automatically get same styles when importing the package */
6
64
 
7
65
  /* Custom Range Slider Styling */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optifye/dashboard-core",
3
- "version": "6.5.11",
3
+ "version": "6.6.0",
4
4
  "description": "Reusable UI & logic for Optifye dashboard",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",