diff --git a/CHANGELOG.md b/CHANGELOG.md
index 54dfd1027..4681fe670 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 0.2.0
+* Simplify header title layout
+* Add navigation panel popover with indicators
+* Add passive event modifiers for touch events
+* Add 'go to today' with header title click
+* Add 'hover' as visibility option for popovers
+* Redesign popovers to display caret arrows
+* Move DateInfo class into separate file
+* Fix date logic for range intersections
+
## 0.1.1
* Add documentation for custom theming
* Restructure docs component hierarchy
diff --git a/README.md b/README.md
index b3c5b1914..7b63b42b3 100755
--- a/README.md
+++ b/README.md
@@ -1,17 +1,18 @@
# V-Calendar
-> V-Calendar is a lightweight, dependency-free plugin for building attributed calendars in Vue.js.
+> V-Calendar is a clean and lightweight plugin for building attributed calendars in Vue.js.
-Visit http://vcalendar.netlify.com for demos and API reference. This plug-in is currently in beta state.
+Visit https://vcalendar.netlify.com for demos and API reference. This plug-in is currently in beta state.
## Features
* Display clean and simple attributed calendars
* Built-in support for various attributes, including
* highlighted regions
- * indicators
+ * dot and bar indicators
* day content styles (hovered and non-hovered)
-* Apply attributes over multiple dates or date ranges (start & end dates)
+* Apply attributes for multiple dates or date ranges (start & end dates)
+* Semantic inspired popover navigation panel with month-level attribute indicators
* Date-picker supporting all native v-calendar props/events with various selection modes
* single date
* multiple dates
@@ -37,6 +38,7 @@ import Vue from 'vue';
import VCalendar from 'v-calendar';
import 'v-calendar/lib/v-calendar.min.css';
+// Use v-calendar, v-date-picker & v-popover components
Vue.use(VCalendar);
```
diff --git a/docs/components/api/props.js b/docs/components/api/props.js
index bd88da1a5..3a5c31187 100644
--- a/docs/components/api/props.js
+++ b/docs/components/api/props.js
@@ -105,8 +105,8 @@ export default [
},
{
name: 'popover-visibility: Number',
- description: 'Date PickerVisibility state of the popover: Auto: -1, Hidden: 0, Visible: 1',
- default: 'Auto: -1',
+ description: 'Date PickerVisibility state of the popover: "hover", "focus", "hidden", "visible"',
+ default: '"hover"',
},
{
name: 'input-class: String',
diff --git a/docs/components/api/sections/SectionApi.vue b/docs/components/api/sections/SectionApi.vue
index cc4803a75..7c8e39f91 100755
--- a/docs/components/api/sections/SectionApi.vue
+++ b/docs/components/api/sections/SectionApi.vue
@@ -1,6 +1,7 @@
+
API
Date Picker Denotes API specific to v-date-picker components only.
diff --git a/docs/components/api/tables/TableApiPage.vue b/docs/components/api/tables/TableApiPage.vue
index 6b56fbf58..67a8fa303 100755
--- a/docs/components/api/tables/TableApiPage.vue
+++ b/docs/components/api/tables/TableApiPage.vue
@@ -65,6 +65,10 @@ export default {
propertyName: 'nextMonthComps: Object',
description: 'Components { days, month, year } for the next month.',
},
+ {
+ propertyName: 'position: Number',
+ description: 'Position of the page. Single Pane: 0, Left Pane: 1, Right Pane: 2',
+ },
{
propertyName: 'move(month, year): Function',
description: 'Function that moves to a page with a specified month and year.',
diff --git a/docs/components/app/sections/SectionHeader.vue b/docs/components/app/sections/SectionHeader.vue
index c73e94b09..a55b344f1 100755
--- a/docs/components/app/sections/SectionHeader.vue
+++ b/docs/components/app/sections/SectionHeader.vue
@@ -24,9 +24,10 @@