Skip to content

Commit ee72eed

Browse files
author
Nicolas Beauvais
committed
Add Office 365 calendar
1 parent 1632de7 commit ee72eed

File tree

9 files changed

+32
-42
lines changed

9 files changed

+32
-42
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<a name="1.0.6"></a>
2+
# [1.0.6](https://github.com/nicolasbeauvais/vue-add-to-calendar/compare/1.0.5..1.0.6) (2020-05-13)
3+
- Add Office 365 calendar
4+
15
<a name="1.0.5"></a>
26
# [1.0.5](https://github.com/nicolasbeauvais/vue-add-to-calendar/compare/1.0.4...1.0.5) (2020-05-13)
37
- Fix Microsoft calendar

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vue-add-to-calendar
1+
<h1 align="center">Vue Add To Calendar</h1>
22

33
[![Release](https://img.shields.io/github/release/nicolasbeauvais/vue-add-to-calendar.svg?style=flat-square)](https://github.com/nicolasbeauvais/vue-add-to-calendar/releases)
44
[![Build Status](https://travis-ci.org/nicolasbeauvais/vue-add-to-calendar.svg?branch=master)](https://travis-ci.org/nicolasbeauvais/vue-add-to-calendar)
@@ -7,15 +7,21 @@
77
[![License](https://img.shields.io/github/license/nicolasbeauvais/vue-add-to-calendar.svg?style=flat-square)](https://github.com/nicolasbeauvais/vue-add-to-calendar/blob/master/LICENSE)
88
[![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)
99

10-
A Vue.js component that provides 'Add to Calendar' functionality
10+
<h3 align="center">A Vue.js renderless component providing 'Add to Calendar' functionality</h3>
11+
<h4 align="center">Less than 1kb gzipped</h4>
12+
13+
---
1114

1215
## [Demo](https://nicolasbeauvais.github.io/vue-add-to-calendar/)
13-
&nbsp;
16+
17+
### What is a renderless component?
18+
19+
Renderless components give you the highest possible control over your markup and styling. This means that `vue-add-to-calendar` ship with minimal HTML and no CSS to let you adapt the look and feel of the components to your needs. You can learn more about renderless components in [this blog article](https://adamwathan.me/renderless-components-in-vuejs/) by [@adamwathan](https://github.com/adamwathan).
20+
1421
## Include support for:
1522
- Google calendar
1623
- Microsoft live calendar
17-
18-
---
24+
- Office 365 calendar
1925

2026
## Installation
2127

@@ -67,6 +73,9 @@ Vue.use(AddToCalendar);
6773
<i class="fa fa-windows"></i> Add to Microsoft live calendar
6874
</microsoft-calendar>
6975

76+
<office365-calendar id="office365-calendar">
77+
<i class="fa fa-windows"></i> Add to Office365 outlook calendar
78+
</office365-calendar>
7079
</div>
7180
</add-to-calendar>
7281
```
@@ -87,7 +96,7 @@ Prop | Data Type | Default | Description
8796
Feel free to open an issue to ask for a new calendar support.
8897

8998
## Changelog
90-
Details changes for each release are documented in the [CHANGELOG.md](https://github.com/nicolasbeauvais/vue-add-to-calendar/blob/master/CHANGELOG.md).
99+
Detailed changes for each release can be found in [CHANGELOG.md](https://github.com/nicolasbeauvais/vue-add-to-calendar/blob/master/CHANGELOG.md).
91100

92101
## Issues
93102
Please make sure to read the [Issue Reporting Checklist](https://github.com/nicolasbeauvais/vue-add-to-calendar/blob/master/CONTRIBUTING.md#issue-reporting-guidelines) before opening an issue. Issues not conforming to the guidelines may be closed immediately.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-add-to-calendar",
3-
"version": "1.0.4",
3+
"version": "1.0.6",
44
"homepage": "https://github.com/nicolasbeauvais/vue-add-to-calendar",
55
"authors": [
66
"nicolasbeauvais <nicolasbeauvais1@gmail.com>"

dist/vue-add-to-calendar.common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-add-to-calendar v1.0.5
2+
* vue-add-to-calendar v1.0.6
33
* (c) 2020 nicolasbeauvais
44
* Released under the MIT License.
55
*/
@@ -175,7 +175,7 @@ var AddToCalendar = {
175175
}
176176
};
177177

178-
AddToCalendar.version = '1.0.5';
178+
AddToCalendar.version = '1.0.6';
179179

180180
AddToCalendar.install = function (Vue) {
181181
Vue.component('add-to-calendar', AddToCalendar);

dist/vue-add-to-calendar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-add-to-calendar v1.0.5
2+
* vue-add-to-calendar v1.0.6
33
* (c) 2020 nicolasbeauvais
44
* Released under the MIT License.
55
*/
@@ -179,7 +179,7 @@ var AddToCalendar = {
179179
}
180180
};
181181

182-
AddToCalendar.version = '1.0.5';
182+
AddToCalendar.version = '1.0.6';
183183

184184
AddToCalendar.install = function (Vue) {
185185
Vue.component('add-to-calendar', AddToCalendar);

dist/vue-add-to-calendar.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-add-to-calendar",
33
"description": "A Vue.js component providing 'Add to Calendar' functionality",
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"author": {
66
"name": "nicolasbeauvais",
77
"email": "nicolasbeauvais1@gmail.com"

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import AddToCalendar from './add-to-calendar';
22

3-
AddToCalendar.version = '1.0.5';
3+
AddToCalendar.version = '1.0.6';
44

55
AddToCalendar.install = (Vue) => {
66
Vue.component('add-to-calendar', AddToCalendar);

0 commit comments

Comments
 (0)