bootstrap-vue
Version:
With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens
29 lines (24 loc) • 681 B
TypeScript
// --- Calendar ---
import Vue from 'vue'
import { BvPlugin, BvComponent } from '../../'
// Plugin
export declare const CalendarPlugin: BvPlugin
// Component: b-calendar
export declare class BCalendar extends BvComponent {
focus: () => void
blur: () => void
}
// --- Interfaces ---
// Calendar context event object
export interface BcCalendarCtxObject {
readonly selectedFormatted: string
readonly selectedYMD: string
readonly selectedDate: Date | null
readonly activeFormatted: string
readonly activeYMD: string
readonly activeDate: Date | null
readonly disabled: boolean
readonly locale: string
readonly calendarLocale: string
readonly rtl: boolean
}