hazo_ui 2.8.1 → 2.11.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/dist/styles.css CHANGED
@@ -114,3 +114,35 @@
114
114
  color: var(--accent-foreground, #f8fafc);
115
115
  opacity: 0.7;
116
116
  }
117
+
118
+ /* ============================================================
119
+ * State primitives: shimmer animation for Skeleton components
120
+ * Used by .hazo-shimmer class. Falls back to static under
121
+ * prefers-reduced-motion (handled in the JSX, not here).
122
+ * ============================================================ */
123
+ @keyframes hazo-shimmer {
124
+ 0% {
125
+ background-position: -200% 0;
126
+ }
127
+ 100% {
128
+ background-position: 200% 0;
129
+ }
130
+ }
131
+
132
+ .hazo-shimmer {
133
+ background: linear-gradient(
134
+ 90deg,
135
+ hsl(var(--muted, 210 40% 96.1%)) 0%,
136
+ hsl(var(--muted, 210 40% 96.1%) / 0.5) 50%,
137
+ hsl(var(--muted, 210 40% 96.1%)) 100%
138
+ );
139
+ background-size: 200% 100%;
140
+ animation: hazo-shimmer 1.2s ease-in-out infinite;
141
+ }
142
+
143
+ @media (prefers-reduced-motion: reduce) {
144
+ .hazo-shimmer {
145
+ animation: none;
146
+ background: hsl(var(--muted, 210 40% 96.1%));
147
+ }
148
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazo_ui",
3
- "version": "2.8.1",
3
+ "version": "2.11.0",
4
4
  "description": "Set of UI components for common interaction elements in a SaaS app",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,7 +24,9 @@
24
24
  "dist",
25
25
  "tailwind.preset.js",
26
26
  "tailwind.preset.d.ts",
27
- "README.md"
27
+ "README.md",
28
+ "CHANGE_LOG.md",
29
+ "SETUP_CHECKLIST.md"
28
30
  ],
29
31
  "scripts": {
30
32
  "build": "tsup",
@@ -92,8 +94,10 @@
92
94
  "lucide-react": "^0.553.0",
93
95
  "react-day-picker": "^8.10.0",
94
96
  "react-icons": "^5.5.0",
97
+ "sonner": "^2.0.7",
95
98
  "tailwind-merge": "^3.5.0",
96
- "tw-animate-css": "^1.4.0"
99
+ "tw-animate-css": "^1.4.0",
100
+ "vaul": "^1.1.2"
97
101
  },
98
102
  "devDependencies": {
99
103
  "@tailwindcss/postcss": "^4.2.4",