-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add in JSON description files for quasar-app-extension-daykeep; chang…
…e dependency structure to try and avoid having multiple copies of Vue initialized which might be causing #66.
- Loading branch information
sirbeagle
committed
Jul 31, 2019
1 parent
9349327
commit 4581f18
Showing
6 changed files
with
225 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"type": "component", | ||
"props": { | ||
"start-date": { | ||
"type": [ | ||
"Date", | ||
"DateTime" | ||
], | ||
"desc": "A JavaScript Date or Luxon DateTime object that passes in a starting display date for the calendar to display." | ||
}, | ||
"sunday-first-day-of-week": { | ||
"type": "Boolean", | ||
"desc": "If true this will force month and week calendars to start on a Sunday instead of the standard Monday." | ||
}, | ||
"calendar-locale": { | ||
"type": "String", | ||
"desc": "A string setting the locale. We use the Luxon package for this and they describe how to set this at https://moment.github.io/luxon/docs/manual/intl.html. This will default to the user's system setting." | ||
}, | ||
"calendar-timezone": { | ||
"type": "String", | ||
"desc": "Manually set the timezone for the calendar. Many strings can be passed in including 'UTC' or any valid [IANA zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). This is better explained [here](https://moment.github.io/luxon/docs/manual/zones.html)." | ||
}, | ||
"event-ref": { | ||
"type": "String", | ||
"desc": "Give the calendar component a custom name so that events triggered on the global event bus can be watched." | ||
}, | ||
"prevent-event-detail": { | ||
"type": "Boolean", | ||
"desc": "Prevent the default event detail popup from appearing when an event is clicked in a calendar." | ||
}, | ||
"allow-editing": { | ||
"type": "Boolean", | ||
"desc": "Allows for individual events to be edited. See the editing section." | ||
}, | ||
"render-html": { | ||
"type": "Boolean", | ||
"desc": "Event descriptions render HTML tags and provide a WYSIWYG editor when editing. No HTML validation is performed so be sure to pass the data passed in does not present a security threat." | ||
}, | ||
"day-display-start-hour": { | ||
"type": "Number", | ||
"desc": "Will scroll to a defined start hour when a day / multi-day component is rendered. Pass in the hour of the day from 0-23, the default being '7'. Current has no effect on the 'CalendarAgenda' component." | ||
}, | ||
|
||
"tab-labels": { | ||
"type": "Object", | ||
"desc": "Passing in an object with strings that will override the labels for the different calendar components. Set variables for 'month', 'week', 'threeDay', 'day' and 'agenda'. Eventually we will replace this with language files and will use the 'calendar-locale' setting." | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"type": "component", | ||
"props": { | ||
"start-date": { | ||
"type": [ | ||
"Date", | ||
"DateTime" | ||
], | ||
"desc": "A JavaScript Date or Luxon DateTime object that passes in a starting display date for the calendar to display." | ||
}, | ||
"sunday-first-day-of-week": { | ||
"type": "Boolean", | ||
"desc": "If true this will force month and week calendars to start on a Sunday instead of the standard Monday." | ||
}, | ||
"calendar-locale": { | ||
"type": "String", | ||
"desc": "A string setting the locale. We use the Luxon package for this and they describe how to set this at https://moment.github.io/luxon/docs/manual/intl.html. This will default to the user's system setting." | ||
}, | ||
"calendar-timezone": { | ||
"type": "String", | ||
"desc": "Manually set the timezone for the calendar. Many strings can be passed in including 'UTC' or any valid [IANA zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). This is better explained [here](https://moment.github.io/luxon/docs/manual/zones.html)." | ||
}, | ||
"event-ref": { | ||
"type": "String", | ||
"desc": "Give the calendar component a custom name so that events triggered on the global event bus can be watched." | ||
}, | ||
"prevent-event-detail": { | ||
"type": "Boolean", | ||
"desc": "Prevent the default event detail popup from appearing when an event is clicked in a calendar." | ||
}, | ||
"allow-editing": { | ||
"type": "Boolean", | ||
"desc": "Allows for individual events to be edited. See the editing section." | ||
}, | ||
"render-html": { | ||
"type": "Boolean", | ||
"desc": "Event descriptions render HTML tags and provide a WYSIWYG editor when editing. No HTML validation is performed so be sure to pass the data passed in does not present a security threat." | ||
}, | ||
"day-display-start-hour": { | ||
"type": "Number", | ||
"desc": "Will scroll to a defined start hour when a day / multi-day component is rendered. Pass in the hour of the day from 0-23, the default being '7'. Current has no effect on the 'CalendarAgenda' component." | ||
}, | ||
|
||
"num-days": { | ||
"type": "Number", | ||
"desc": "The number of days the multi-day calendar. A value of `1` will change the header to be more appropriate for a single day." | ||
}, | ||
"scroll-height": { | ||
"type": "String", | ||
"desc": "Defaults to '200px', this is meant to define the size of the 'block' style." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"type": "component", | ||
"props": { | ||
"start-date": { | ||
"type": [ | ||
"Date", | ||
"DateTime" | ||
], | ||
"desc": "A JavaScript Date or Luxon DateTime object that passes in a starting display date for the calendar to display." | ||
}, | ||
"sunday-first-day-of-week": { | ||
"type": "Boolean", | ||
"desc": "If true this will force month and week calendars to start on a Sunday instead of the standard Monday." | ||
}, | ||
"calendar-locale": { | ||
"type": "String", | ||
"desc": "A string setting the locale. We use the Luxon package for this and they describe how to set this at https://moment.github.io/luxon/docs/manual/intl.html. This will default to the user's system setting." | ||
}, | ||
"calendar-timezone": { | ||
"type": "String", | ||
"desc": "Manually set the timezone for the calendar. Many strings can be passed in including 'UTC' or any valid [IANA zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). This is better explained [here](https://moment.github.io/luxon/docs/manual/zones.html)." | ||
}, | ||
"event-ref": { | ||
"type": "String", | ||
"desc": "Give the calendar component a custom name so that events triggered on the global event bus can be watched." | ||
}, | ||
"prevent-event-detail": { | ||
"type": "Boolean", | ||
"desc": "Prevent the default event detail popup from appearing when an event is clicked in a calendar." | ||
}, | ||
"allow-editing": { | ||
"type": "Boolean", | ||
"desc": "Allows for individual events to be edited. See the editing section." | ||
}, | ||
"render-html": { | ||
"type": "Boolean", | ||
"desc": "Event descriptions render HTML tags and provide a WYSIWYG editor when editing. No HTML validation is performed so be sure to pass the data passed in does not present a security threat." | ||
}, | ||
"day-display-start-hour": { | ||
"type": "Number", | ||
"desc": "Will scroll to a defined start hour when a day / multi-day component is rendered. Pass in the hour of the day from 0-23, the default being '7'. Current has no effect on the 'CalendarAgenda' component." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"type": "component", | ||
"props": { | ||
"start-date": { | ||
"type": [ | ||
"Date", | ||
"DateTime" | ||
], | ||
"desc": "A JavaScript Date or Luxon DateTime object that passes in a starting display date for the calendar to display." | ||
}, | ||
"sunday-first-day-of-week": { | ||
"type": "Boolean", | ||
"desc": "If true this will force month and week calendars to start on a Sunday instead of the standard Monday." | ||
}, | ||
"calendar-locale": { | ||
"type": "String", | ||
"desc": "A string setting the locale. We use the Luxon package for this and they describe how to set this at https://moment.github.io/luxon/docs/manual/intl.html. This will default to the user's system setting." | ||
}, | ||
"calendar-timezone": { | ||
"type": "String", | ||
"desc": "Manually set the timezone for the calendar. Many strings can be passed in including 'UTC' or any valid [IANA zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). This is better explained [here](https://moment.github.io/luxon/docs/manual/zones.html)." | ||
}, | ||
"event-ref": { | ||
"type": "String", | ||
"desc": "Give the calendar component a custom name so that events triggered on the global event bus can be watched." | ||
}, | ||
"prevent-event-detail": { | ||
"type": "Boolean", | ||
"desc": "Prevent the default event detail popup from appearing when an event is clicked in a calendar." | ||
}, | ||
"allow-editing": { | ||
"type": "Boolean", | ||
"desc": "Allows for individual events to be edited. See the editing section." | ||
}, | ||
"render-html": { | ||
"type": "Boolean", | ||
"desc": "Event descriptions render HTML tags and provide a WYSIWYG editor when editing. No HTML validation is performed so be sure to pass the data passed in does not present a security threat." | ||
}, | ||
"day-display-start-hour": { | ||
"type": "Number", | ||
"desc": "Will scroll to a defined start hour when a day / multi-day component is rendered. Pass in the hour of the day from 0-23, the default being '7'. Current has no effect on the 'CalendarAgenda' component." | ||
}, | ||
|
||
"num-days": { | ||
"type": "Number", | ||
"desc": "The number of days the multi-day calendar. A value of `1` will change the header to be more appropriate for a single day." | ||
}, | ||
"nav-days": { | ||
"type": "Number", | ||
"desc": "This is how many days the previous / next navigation buttons will jump." | ||
}, | ||
"force-start-of-week": { | ||
"type": "Boolean", | ||
"desc": "Default is 'false'. This is appropriate if you have a week display (7 days) that you want to always start on the first day of the week." | ||
}, | ||
"day-cell-height": { | ||
"type": "Number", | ||
"desc": "Default is '5'. How high in units (unit type defined by 'day-cell-height-unit') an hour should be." | ||
}, | ||
"day-cell-height-unit": { | ||
"type": "String", | ||
"desc": "his is how many days the previous / next navigation buttons will jump." | ||
}, | ||
"show-half-hours": { | ||
"type": "Boolean", | ||
"desc": "Default is `false`. Show ticks and labels for half hour segments." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters