@schedule-x/timezone-select
v4.4.0
Published
Schedule-X timezone select plugin
Readme

@schedule-x/timezone-select
A Schedule-X plugin for adding a timezone dropdown to the calendar header. The timezone select component will appear to the left of the view selection component when configured.
Installation
npm install @schedule-x/timezone-selectUsage
// other imports
import { createTimezoneSelectPlugin, translations as timezoneTranslations } from '@schedule-x/timezone-select'
import { translations, mergeLocales } from '@schedule-x/translations'
import '@schedule-x/timezone-select/index.css'
const calendar = createCalendar({
/* other configuration */
plugins: [
createTimezoneSelectPlugin()
],
translations: mergeLocales(
translations,
timezoneTranslations,
),
})