Skip to content

v2.0.0-rc

Compare
Choose a tag to compare
@acro5piano acro5piano released this 01 Aug 15:19

This is a release candidate for v2.0.0.

New Features

  • Make header injectable #473
  • Make header for month view injectable #473
  • (breaking) Enable to inject styles for header and body separately #409
  • Add theme functionality. A lot of people are requesting additional customization feature, so provided the customization option. #243 #93
export interface ThemeInterface {
  palette: {
    primary: Palette
    nowIndicator: string
    gray: {
      100: string
      200: string
      300: string
      500: string
      800: string
    }
  }
  isRTL: boolean
  typography: {
    fontFamily?: string
    xs: Typography
    sm: Typography
    xl: Typography
  }
  eventCellOverlappings: readonly Palette[]
}

Bug fixes

  • Show AM/PM format event #445
  • Fix Android start/end property and month view style
  • Fix Android css #486

Chore

  • Update deps

Breaking

  • Removed style prop as it is ambigious

For more details, see #475 #486