{"id":15061593,"url":"https://github.com/michael-hack/bulma-calendar","last_synced_at":"2026-04-09T00:02:08.265Z","repository":{"id":23824053,"uuid":"99837042","full_name":"michael-hack/bulma-calendar","owner":"michael-hack","description":"Bulma's extension to display a calendar","archived":false,"fork":false,"pushed_at":"2024-10-11T00:01:01.000Z","size":7681,"stargazers_count":294,"open_issues_count":44,"forks_count":161,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-12-13T06:55:06.363Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michael-hack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-09T17:48:59.000Z","updated_at":"2025-07-01T10:35:16.000Z","dependencies_parsed_at":"2024-06-18T12:38:42.990Z","dependency_job_id":"736e4289-6b41-4f02-95c5-cb840964d5aa","html_url":"https://github.com/michael-hack/bulma-calendar","commit_stats":{"total_commits":368,"total_committers":52,"mean_commits":7.076923076923077,"dds":0.5190217391304348,"last_synced_commit":"ec1793f4b77626dd7b14d51ccd7f310e9ebb7e0b"},"previous_names":["michael-hack/bulma-calendar","wikiki/bulma-calendar"],"tags_count":65,"template":false,"template_full_name":null,"purl":"pkg:github/michael-hack/bulma-calendar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-hack%2Fbulma-calendar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-hack%2Fbulma-calendar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-hack%2Fbulma-calendar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-hack%2Fbulma-calendar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michael-hack","download_url":"https://codeload.github.com/michael-hack/bulma-calendar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-hack%2Fbulma-calendar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31579058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T23:22:02.097Z","updated_at":"2026-04-09T00:02:08.252Z","avatar_url":"https://github.com/michael-hack.png","language":"JavaScript","funding_links":[],"categories":["Extensions"],"sub_categories":["Courses"],"readme":"# bulma-calendar\nBulma's extension to display a calendar. It can be used on page as large calendar with apointments or in modal/popup for datepicker.\n\n[![npm](https://img.shields.io/npm/v/bulma-calendar.svg)](https://www.npmjs.com/package/bulma-calendar-js)\n[![npm](https://img.shields.io/npm/dm/bulma-calendar.svg)](https://www.npmjs.com/package/bulma-calendar-js)\n[![Build Status](https://travis-ci.org/Wikiki/bulma-calendar.svg?branch=master)](https://travis-ci.org/Wikiki/bulma-calendar)\n\n# Examples\n\n### Date format\n\n```js\nvar calendars = new bulmaCalendar('.bulmaCalendar', {\n    dateFormat: 'dd.MM.yyyy' // 01.01.2021\n});\n```\n\nwhere `dateFormat` is a string with a combination of this values:\n\n```\nd: short day (1-31)\ndd: long day (00-31)\nEEE: short weekday (es: Mon)\nEEEE: long weekday (es: Monday)\nM: short month (1-12)\nMM: long month (01-12)\nMMM: short month name (es: Jan, Feb)\nMMMM: full month name (es: January)\nyy: short year (18)\nyyyy: full year (2018)\n```\n\nFor more values take a look at the [date-fns 2.x format](https://date-fns.org/v2.21.3/docs/format).\n\n### Language\n\n```js\n\nvar calendars = new bulmaCalendar('.bulmaCalendar', {\n    lang: 'it' // refer to date-fns locales\n});\n```\n\n### Default Options\n\nHere's the options object and the default values as appears on code. For more options, please see the documentation.\n\n```js\nvar defaultOptions = {\n    color: 'primary',\n    isRange: false,\n    allowSameDayRange: true,\n    lang: 'en-US',\n    startDate: undefined,\n    endDate: undefined,\n    minDate: null,\n    maxDate: null,\n    disabledDates: [],\n    disabledWeekDays: undefined,\n    highlightedDates: [],\n    weekStart: 0,\n    dateFormat: 'MM/dd/yyyy',\n    enableMonthSwitch: true,\n    enableYearSwitch: true,\n    displayYearsCount: 50,\n};\n```\n\n# Documentation \u0026 Demo\n\nYou can find the full Documentation and a demo [here](https://doc.mh-s.de/bulma-calendar)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichael-hack%2Fbulma-calendar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichael-hack%2Fbulma-calendar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichael-hack%2Fbulma-calendar/lists"}