0.5.5 • Published 4 days ago

@bigbinary/neeto-time-zones v0.5.5

Weekly downloads
-
License
MIT
Repository
-
Last release
4 days ago

@bigbinary/neeto-time-zones

npm version license

A simple and lightweight NPM package for working with time zones. This package provides a human friendly timezone selector and utility functions for timezones.

Installation

You can install the package using npm:

npm install @bigbinary/neeto-time-zones

NeetoTimezoneSelector

Check out the live demo

import { NeetoTimezoneSelector } from "@bigbinary/neeto-time-zones";

new NeetoTimezoneSelector(document.getElementById("elementId"));

Configuration

You can pass options as the second parameter to configure the timezone selector component.

  1. elementId: ID for the NeetoTimezoneSelector. By default the ID will be timezone-selector
  2. className: Custom classes that can be added to the component.
  3. onChange: Function to be called when the timezone selector changes.
  4. position: Position in which the selector should open in. Available options: top, bottom. Default position is bottom.
  5. onHourFormatChange: Function to be called when the time format changes.
import { NeetoTimezoneSelector } from "@bigbinary/neeto-time-zones";

new NeetoTimezoneSelector(document.getElementById("elementId"), {
  className: "custom-selector-class",
  onChange: (timezone) => {
    console.log(timezone);
  },
  elementId: "custom-selector-element",
  position: "top",
});

ianaTimezoneToHumanReadble

import { ianaTimezoneToHumanReadable } from "@bigbinary/neeto-time-zones";

ianaTimezoneToHumanReadable("Asia/Calcutta") // => Indian Standard Time

ianaTimezoneToHumanReadable("America/New_York") // => Eastern Standard Time

ianaTimezoneToHumanReadable("Europe/Berlin") // => Central Standard Time

Development

Clone the repo

git clone git@github.com:bigbinary/neeto-time-zones.git
cd neeto-timezones/js
pnpm install
pnpm dev

Publishing to npm

  1. Bump package.json version
  2. Commit and push
  3. pnpm build && pnpm publish
0.5.5

4 days ago

0.5.4

6 days ago

0.5.3

20 days ago

0.5.2

4 months ago

0.5.1

6 months ago

0.5.0

7 months ago