![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
angular-addtocalendar
Advanced tools
An Angular.js component for adding an event to calendar apps. It supports .ics files for iCalendar and Outlook and also supports Google Calendar, Yahoo! Calendar and Outlook Online.
Add source
bower:
bower install angular-addtocalendar --save
npm:
npm i angular-addtocalendar --save
If you're using webpack, you need to require the module.
require('angular-addtocalendar');
Alternatively:
import 'angular-addtocalendar';
Inject the dependency angular-atc
into your app:
angular
.module('myApp', [
'angular-atc',
...
]);
Note: If you're using a version earlier than 1.3.0, the module name is jshor.angular-addtocalendar
.
For a demo, please click here.
<addtocalendar
start-date="20190704T190000"
end-date="20190704T210000"
title="Happy Hour"
location="The Bar, New York, NY"
description="Let's blow off some steam from our weekly deployments to enjoy a tall cold one!"
recurrence-frequency="WEEKLY"
recurrence-interval="2"
recurrence-until="20190904T210000">
</addtocalendar>
Attribute | Description | Type | Required? | Example |
---|---|---|---|---|
title | Title of the event | String | Yes | Happy Hour |
description | Summary of the event | String | Yes | Come enjoy drinks! |
location | Event location | String | Yes | The Bar, NYC |
start-date | Date that the event starts on | String date` | Yes | 20180704T190000 |
end-date | Date that the event ends on. Omit for an all-day event | String date` | No | 20180704T210000 |
recurrence-frequency | Event frequency; DAILY , WEEKLY , MONTHLY , YEARLY | Enum | No | DAILY |
recurrence-interval | Time between recurrences | Integer | No | 2 |
recurrence-count | Number of times the event should repeat | Integer | No | 4 |
recurrence-end | Date when the last recurrence should occur | String date | Yes* | 20190904T210000 |
recurrence-weekstart | Day that the week starts on (default: SU ); SU MO , TU , WE , TH , FR , SA | Enum | No | SU |
recurrence-weekdays | Comma-separated days of the week that the event occurs on; SU MO , TU , WE , TH , FR , SA | Enum | No | TU,TH,SA |
recurrence-monthdays | Comma-separated list of monthdays | String of numbers | No | 2,4,6,8 |
btn-text | Text to be displayed on the button | String | No | Add to calendar |
use-bootstrap | Use Bootstrap classes | Boolean | No | true |
angular-addtocalendar is designed to be compatible with Bootstrap but also comes bundled with both a custom stylesheet and extendable Sass styles. The markup selector convention is identical to the Bootstrap dropdown markup.
If you already have Bootstrap set up in your project, just pass in use-bootstrap="true"
as a parameter to the <angular-addtocalendar />
component.
If you're using Sass, you can import the default Sass stylesheet like so:
@import '~/angular-addtocalendar/addtocalendar.scss';
Or if you want to reference the compiled stylesheet directly:
<link rel="stylesheet" href="node_modules/angular-addtocalendar/styles.css" />
Assuming you're using Sass, import the stylesheet as noted above. Otherwise, copy the compiled CSS bundled with the project and modify styles as such.
The css namespace (parent class) for this module is atc-btn-group
(assuming use-bootstrap
is false).
Please report all bugs here.
Available here.
FAQs
AngularJS directive for adding events to calendar apps
The npm package angular-addtocalendar receives a total of 159 weekly downloads. As such, angular-addtocalendar popularity was classified as not popular.
We found that angular-addtocalendar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.