@classic-homes/theme-tailwind-preset 0.1.52 → 0.1.53

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.
Files changed (2) hide show
  1. package/index.js +17 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -266,6 +266,20 @@ module.exports = {
266
266
  '0%, 100%': { opacity: '1' },
267
267
  '50%': { opacity: '0.7' },
268
268
  },
269
+ // Progress bar indeterminate
270
+ 'progress-indeterminate': {
271
+ '0%': { transform: 'translateX(-100%)' },
272
+ '100%': { transform: 'translateX(400%)' },
273
+ },
274
+ // Skeleton shimmer
275
+ shimmer: {
276
+ '0%': { backgroundPosition: '-200% 0' },
277
+ '100%': { backgroundPosition: '200% 0' },
278
+ },
279
+ // Logo trace animation
280
+ trace: {
281
+ to: { 'stroke-dashoffset': '-14' },
282
+ },
269
283
 
270
284
  // DataPanel slide animations (from edges)
271
285
  'panel-slide-in-left': {
@@ -335,6 +349,9 @@ module.exports = {
335
349
  'scale-out': 'scale-out 0.2s ease-out',
336
350
  'spin-slow': 'spin-slow 2s linear infinite',
337
351
  'pulse-subtle': 'pulse-subtle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
352
+ 'progress-indeterminate': 'progress-indeterminate 1.5s ease-in-out infinite',
353
+ shimmer: 'shimmer 2s linear infinite',
354
+ trace: 'trace 2s linear infinite',
338
355
 
339
356
  // DataPanel animations
340
357
  'panel-slide-in-left': 'panel-slide-in-left 0.2s ease-out',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@classic-homes/theme-tailwind-preset",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
4
4
  "description": "Tailwind CSS preset for the Classic theme system",
5
5
  "main": "index.js",
6
6
  "sideEffects": false,