Interface ICoreProps

Application configuration properties for initializing Vevet.

interface ICoreProps {
    applyClassNames: boolean;
    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
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.

16
sm: number

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

899