Interface ICoreProps

Application configuration properties for initializing Vevet.

interface ICoreProps {
    applyClassNames: boolean;
    easing?: TEasingType;
    md: number;
    resizeDebounce: number;
    sm: number;
}

Properties

applyClassNames: boolean

If need to apply class names for the root element: such as browser, OS name, etc.

false
easing?: TEasingType

Default easing type. Accepts a bezier array, function or an easing name.

[0.25, 0.1, 0.25, 1]
md: number

Medium breakpoint in pixels. When changing this property, you need to update the SASS variable: $md. The values must be equal.

1199
resizeDebounce: number

Timeout (in milliseconds) for viewport callbacks debouncing.

0
sm: number

Small breakpoint in pixels. When changing this property, you need to update the SASS variable: $sm. The values must be equal.

999