@novie/ui 0.1.33 → 0.1.34

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@novie/ui",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "description": "Novie design system component library built on shadcn/ui conventions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -177,12 +177,18 @@ const noviePreset: Config = {
177
177
  from: { height: "var(--radix-accordion-content-height)" },
178
178
  to: { height: "0" },
179
179
  },
180
+ "skeleton-shimmer": {
181
+ "0%": { transform: "translateX(-100%)" },
182
+ "100%": { transform: "translateX(100%)" },
183
+ },
180
184
  },
181
185
  animation: {
182
186
  "progress-indeterminate":
183
187
  "progress-indeterminate 1.5s ease-in-out infinite",
184
188
  "accordion-down": "accordion-down 0.2s ease-out",
185
189
  "accordion-up": "accordion-up 0.2s ease-out",
190
+ "skeleton-shimmer":
191
+ "skeleton-shimmer 1.5s ease-in-out infinite",
186
192
  },
187
193
  },
188
194
  },