npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

calendula

v0.10.0

Published

A special datepicker

Downloads

38

Readme

Calendula Build Status devDependency Status

Особенный календарь 📅 на JavaScript

Calendula

Возможности:

  • эргономичный дизайн;
  • отсутствие зависимостей от сторонних библиотек;
  • отложенная инициализация;
  • темы оформления;
  • подсветка праздничных дней: ru, tr и uk;
  • локализация.

Поддержка в браузерах:

  • Internet Explorer 11 и выше;
  • Mozilla Firefox 46 и выше;
  • Google Chrome 67 и выше;
  • Safari 8 и выше.

Примеры

Подключение

npm install calendula
<link rel="stylesheet" href="node_modules/calendula/dist/calendula.all.css" />
<script src="node_modules/calendula/dist/calendula.all.js"></script>

Для подключения только нужной локали и темы:

<link rel="stylesheet" href="node_modules/calendula/dist/calendula.css" />
<link rel="stylesheet" href="node_modules/calendula/dist/themes/default.css" />
<script src="node_modules/calendula/dist/calendula.js"></script>
<script src="node_modules/calendula/dist/locales/en.js"></script>

Или воспользуйтесь инструментом для сборки.

Использование

var c = new Calendula({
    theme: 'ios',
    locale: 'en',
    value: '2018-10-11'
    //...
});

| № | Свойство | Тип | По умолчанию | Описание | |:---|:----------|:---------------------|:--------------|:--------------------------------------------| | 1. | autocloseable | Boolean | true | Закрытие календаря при клике мимо него. | | 2. | closeAfterSelection| Boolean | true | Закрытие календаря при выборе даты. | | 3. | locale | String | en | Язык интерфейса.be de en es fr it pl ru tr uk | | 4. | max | StringDateNumber | | Максимальная дата. | | 5. | min | StringDateNumber | | Минимальная дата. | | 6. | position | String | auto auto | Позиция календаря относительно switcher.Формат: x y.x: auto, left, center или right.y: auto, top, center или bottom.| | 7. | switcher | DOMElement | | Кнопка, при клике на которую открывается и позиционируется календарь. | | 8. | theme | String | default | Тема оформления.default black ios metro android| | 9. | value | StringDateNumber | текущая дата | Выбранная дата. | | 10. | years | String | -11:1 | Установка диапазона для списка лет. |

Поддерживаемые форматы дат:

  • 2018-11-22 2018/11/22 2018.11.22
  • 22-11-2018 22/11/2018 22.11.2018
  • new Date(2018, 11, 12)
  • 1418328000000
  • {day: 22, month: 10 /* 0-11 */, year: 2018}

API

.open()

Открыть календарь.

.close()

Закрыть календарь.

.toggle()

Открыть/закрыть календарь.

.isOpened()

Проверка открытия календаря.

.setting(name, [value])

Получить или установить значение настройки.

.on(type, callback)

Установить событие.

c.on('select', function(e, data) {
  console.log(data.day, data.month, data.year);
});

.off(type, callback)

Снять событие.

.title.set(data)

Установить цветную подсказку на дату.

c.title.set({date: '2018-12-15', text: 'Hello world!', color: 'red'});

c.title.set([
    {date: '2018-12-11', text: 'Hello world!', color: 'red'},
    {date: '2018-12-12', text: 'Hello world!', color: 'orange'},
    {date: '2018-12-13', text: 'Hello world!', color: 'blue'}
]);

.title.remove(date)

Удалить цветную подсказку.

c.title.remove('2018-12-15');

c.title.remove(['2018-12-11', '2018-12-12', '2018-12-13']);

.title.removeAll()

Удалить все цветные подсказки.

.destroy()

Уничтожить календарь: привязку событий, DOM-элементы и пр.

События

open

Календарь открыт.

close

Календарь закрыт.

select

Выбрана дата.

Разработка

Тесты:

npm test

Пересборка:

npm run build

Лицензия

MIT License