UNPKG

@sandlada/mdk

Version:

A JavaScript library based on Material Design 3, providing data such as color, shape, shadow level, etc.

25 lines (24 loc) 1.81 kB
export declare abstract class Easing { static readonly Standard = "cubic-bezier(0.20, 0.00, 0.0, 1.00)"; static readonly StandardAccelerate = "cubic-bezier(0.30, 0.00, 1.0, 1.00)"; static readonly StandardDecelerate = "cubic-bezier(0.00, 0.00, 0.0, 1.00)"; static readonly Emphasized = "cubic-bezier(0.20, 0.00, 0.0, 1.00)"; static readonly EmphasizedAccelerate = "cubic-bezier(0.30, 0.00, 0.8, 0.15)"; static readonly EmphasizedDecelerate = "cubic-bezier(0.05, 0.70, 0.1, 1.00)"; static readonly Legacy = "cubic-bezier(0.40, 0.00, 0.2, 1.00)"; static readonly LegacyAccelerate = "cubic-bezier(0.40, 0.00, 1.0, 1.00)"; static readonly LegacyDecelerate = "cubic-bezier(0.00, 0.00, 0.2, 1.00)"; static readonly Linear = "cubic-bezier(0.00, 0.00, 1.0, 1.00)"; static readonly ExpressiveFastSpatial = "cubic-bezier(0.42, 1.67, 0.21, 0.90)"; static readonly ExpressiveDefaultSpatial = "cubic-bezier(0.38, 1.21, 0.22, 1.00)"; static readonly ExpressiveSlowSpatial = "cubic-bezier(0.39, 1.29, 0.35, 0.98)"; static readonly ExpressiveFastEffects = "cubic-bezier(0.31, 0.94, 0.34, 1.00)"; static readonly ExpressiveDefaultEffects = "cubic-bezier(0.34, 0.80, 0.34, 1.00)"; static readonly ExpressiveSlowEffects = "cubic-bezier(0.34, 0.88, 0.34, 1.00)"; static readonly StandardFastSpatial = "cubic-bezier(0.27, 1.06, 0.18, 1.00)"; static readonly StandardDefaultSpatial = "cubic-bezier(0.27, 1.06, 0.18, 1.00)"; static readonly StandardSlowSpatial = "cubic-bezier(0.27, 1.06, 0.18, 1.00)"; static readonly StandardFastEffects = "cubic-bezier(0.31, 0.94, 0.34, 1.00)"; static readonly StandardDefaultEffects = "cubic-bezier(0.34, 0.80, 0.34, 1.00)"; static readonly StandardSlowEffects = "cubic-bezier(0.34, 0.88, 0.34, 1.00)"; }