@novie/ui 0.1.31 → 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/dist/components/ui/skeleton.d.ts +8 -1
- package/dist/components/ui/skeleton.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1969 -1968
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/tailwind.preset.ts +6 -0
package/package.json
CHANGED
package/tailwind.preset.ts
CHANGED
|
@@ -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
|
},
|