@sandlada/mdk
Version:
A JavaScript library based on Material Design 3, providing data such as color, shape, shadow level, etc.
31 lines (30 loc) • 1.3 kB
TypeScript
export declare abstract class Duration {
static readonly Short1 = "50ms";
static readonly Short2 = "100ms";
static readonly Short3 = "150ms";
static readonly Short4 = "200ms";
static readonly Medium1 = "250ms";
static readonly Medium2 = "300ms";
static readonly Medium3 = "350ms";
static readonly Medium4 = "400ms";
static readonly Long1 = "450ms";
static readonly Long2 = "500ms";
static readonly Long3 = "550ms";
static readonly Long4 = "600ms";
static readonly ExtraLong1 = "700ms";
static readonly ExtraLong2 = "800ms";
static readonly ExtraLong3 = "900ms";
static readonly ExtraLong4 = "1000ms";
static readonly ExpressiveFastSpatial = "350ms";
static readonly ExpressiveDefaultSpatial = "500ms";
static readonly ExpressiveSlowSpatial = "650ms";
static readonly ExpressiveFastEffects = "150ms";
static readonly ExpressiveDefaultEffects = "200ms";
static readonly ExpressiveSlowEffects = "300ms";
static readonly StandardFastSpatial = "350ms";
static readonly StandardDefaultSpatial = "500ms";
static readonly StandardSlowSpatial = "750ms";
static readonly StandardFastEffects = "150ms";
static readonly StandardDefaultEffects = "200ms";
static readonly StandardSlowEffects = "300ms";
}