|
@@ -0,0 +1,1468 @@
|
|
|
+{
|
|
|
+ "type": "component",
|
|
|
+ "props": {
|
|
|
+ "value": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "v-model; When set as YYYY-mm-dd, the calendar will display the current view on this date. If empty, then it will be changed to the current date",
|
|
|
+ "required": true,
|
|
|
+ "default": "now",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "v-model=\"2019-04-01\"",
|
|
|
+ "v-model=\"2020-08-08\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "view": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "The type of calendar view to be displayed",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "values": [
|
|
|
+ "day",
|
|
|
+ "2day",
|
|
|
+ "3day",
|
|
|
+ "4day",
|
|
|
+ "5day",
|
|
|
+ "6day",
|
|
|
+ "week",
|
|
|
+ "month",
|
|
|
+ "month-interval",
|
|
|
+ "custom-interval",
|
|
|
+ "scheduler",
|
|
|
+ "month-scheduler",
|
|
|
+ "custom-scheduler"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "view=\"week\"",
|
|
|
+ "view=\"month\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "now": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "This is the currently displayed date (highlighted). If not set, then the current date is used",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "now=\"2019-04-01\"",
|
|
|
+ "now=\"2020-08-08\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "weekdays": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "This is the days of the week and in which order they are displayed. If you want Monday as the first day of the week, you would use [1,2,3,4,5,6,0]",
|
|
|
+ "default": "[0,1,2,3,4,5,6]",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ ":weekdays=\"[1,2,3,4,5,6,0]\"",
|
|
|
+ ":weekdays=\"[1,2,3,4,5]\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "disabled-days": {
|
|
|
+ "type": "Array",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "An array of string dates in the form YYYY-mm-dd that will be disabled",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ ":disabled-days=\"['2019-04-01', '2019-04-02', '2019-04-03', '2019-04-04']\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "locale": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "Used to change the locale of the calendar",
|
|
|
+ "default": "en-us",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "locale=\"de-de\"",
|
|
|
+ "locale=\"de\"",
|
|
|
+ "locale=\"fr\"",
|
|
|
+ "locale=\"pl\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "max-days": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "The number of days to be displayed. Applicable only for custom-interval and scheduler views",
|
|
|
+ "default": 7,
|
|
|
+ "applicable": [
|
|
|
+ "Custom",
|
|
|
+ "Scheduler"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "max-days=\"14\"",
|
|
|
+ "max-days=\"10\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "color": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "This is the color used current day (now) highlighting. It can be from the Quasar color palette or a CSS hash value (ie: '#0000FF')",
|
|
|
+ "default": "",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "color=\"orange-7\"",
|
|
|
+ "color=\"blue-grey-4\"",
|
|
|
+ "color=\"#00CCFC\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "enable-theme": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Turn on theme support",
|
|
|
+ "default": false,
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "theme": {
|
|
|
+ "type": "Object",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Object containing keys and values that overrides the calendar's color properties. See online demo for format of a theme",
|
|
|
+ "default": "{}",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hide-header": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Hide the calendar header. Applicable to all views",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "short-weekday-label": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Displays the weekday label in short format. For instance, 'Monday' would become 'Mon'",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "animated": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "Turns on animation",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "transition-prev": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "When animated property is true, transition to use for previous calendar view",
|
|
|
+ "default": "slide-right",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "transition-prev=\"flip-right\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "transition-next": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "When animated property is true, transition to use for next calendar view",
|
|
|
+ "default": "slide-left",
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "transition-next=\"flip-left\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "drag-over-func": {
|
|
|
+ "type": "Function",
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The function to handle ondragover events",
|
|
|
+ "params": {
|
|
|
+ "event": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The event associated with the ondragover"
|
|
|
+ },
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object associated with the date and optional time (if an interval)"
|
|
|
+ },
|
|
|
+ "type": {
|
|
|
+ "type": "String",
|
|
|
+ "desc": "This can be 'day', 'interval' or 'resource'"
|
|
|
+ },
|
|
|
+ "index": {
|
|
|
+ "type": "Number",
|
|
|
+ "desc": "The column-count index location of the start of the drag (only available if property column-count is set)"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ ":drag-over-func=\"onDragOver\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "drop-func": {
|
|
|
+ "type": "Function",
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The function to handle drop events",
|
|
|
+ "params": {
|
|
|
+ "event": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The event associated with the ondrop"
|
|
|
+ },
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object associated with the date and optional time (if an interval) of the drop"
|
|
|
+ },
|
|
|
+ "type": {
|
|
|
+ "type": "String",
|
|
|
+ "desc": "This can be 'day', 'interval' or 'resource'"
|
|
|
+ },
|
|
|
+ "index": {
|
|
|
+ "type": "Number",
|
|
|
+ "desc": "The column-count index location of the start of the drag (only available if property column-count is set)"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "All"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ ":drop-func=\"onDrop\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "no-scroll": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Turns off the internal scrollbar. Useful if you want to handle your own scrolling",
|
|
|
+ "default": "",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "column-header-before": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Turns on the column-header-before scoped slot",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "column-header-after": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Turns on the column-header-after scoped slot",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "column-count": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "Applicable only for day view. Show the same day x number of times in columns. Scoped slots get this data as index in passed object",
|
|
|
+ "default": 1,
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "column-count=\"3\"",
|
|
|
+ "column-count=\"5\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "column-index-start": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "content",
|
|
|
+ "desc": "Applicable only for day view. This is the starting index. This allows you to create a paging system (next/prev) when using column-count property",
|
|
|
+ "default": 0,
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "column-index-start=\"0\"",
|
|
|
+ "column-index-start=\"2\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "short-interval-label": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Makes interval labels short",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "interval-height": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The maximum height in pixels for the interval height",
|
|
|
+ "default": "40",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "interval-height=\"60\"",
|
|
|
+ "interval-height=\"100\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "interval-style": {
|
|
|
+ "type": "Function",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Gets called to provide custom styling of an interval",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "A timestamp object associated with the interval"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "returns": "A Vue style object",
|
|
|
+ "default": "{}",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "interval-style=\"background-color: #c0c0c0\"",
|
|
|
+ ":interval-style=\"myIntervalStyle\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "interval-minutes": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The number of minutes in an interval",
|
|
|
+ "default": "60",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "interval-minutes=\"15\"",
|
|
|
+ "interval-minutes=\"30\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "interval-count": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The number intervals to use. If interval-minutes is set to 30 then you would set interval count to 48 – double that of regular",
|
|
|
+ "default": "24",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "interval-count=\"48\"",
|
|
|
+ "interval-count=\"96\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "interval-start": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The starting interval",
|
|
|
+ "default": "0",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "interval-start=\"6\"",
|
|
|
+ "interval-start=\"8\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hour24-format": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Show intervals in 24 hour format",
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "day-height": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The maximum height in pixels for the day height",
|
|
|
+ "default": "50",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "day-height=\"80\"",
|
|
|
+ "day-height=\"100\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "day-padding": {
|
|
|
+ "type": "String",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Overrides the padding to be used for a day element. You can use any CSS padding format",
|
|
|
+ "default": "48px 2px",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "day-padding=\"20px 5px\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "day-style": {
|
|
|
+ "type": "Function",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Gets called to provide custom styling of a day",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "A timestamp object associated with the day"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "returns": "A Vue style object",
|
|
|
+ "default": "{}",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "day-style=\"background-color: #c0c0c0\"",
|
|
|
+ ":day-style=\"dayStyle\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "min-weeks": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "model",
|
|
|
+ "desc": "The minimum number of weeks to be displayed",
|
|
|
+ "default": 1,
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "min-weeks=\"2\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "short-month-label": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Makes the month label short. January becomes Jan...",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "show-work-weeks": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "content",
|
|
|
+ "desc": "Show work weeks",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "show-month-label": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "content",
|
|
|
+ "desc": "Shows the month label - this occurs on the 1st of the month",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "show-day-of-year-label": {
|
|
|
+ "type": "Boolean",
|
|
|
+ "category": "content",
|
|
|
+ "desc": "Show the say of the year - this occurs in the top right of each day element. If show-month-label is true, then that day is skipped",
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "resources": {
|
|
|
+ "type": "Array",
|
|
|
+ "category": "model",
|
|
|
+ "desc": "Required when view is of type scheduler. An array of objects with a single key of label. You can add other keys if you like, which will be passed in on the appropriate scoped slots",
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "resource-height": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "behavior",
|
|
|
+ "desc": "The maximum height in pixels for the resource height",
|
|
|
+ "default": "70",
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "resource-height=\"80\"",
|
|
|
+ "resource-height=\"100\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "resource-width": {
|
|
|
+ "type": [
|
|
|
+ "Number",
|
|
|
+ "String"
|
|
|
+ ],
|
|
|
+ "category": "style",
|
|
|
+ "desc": "The maximum width in pixels for the resource width",
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ "resource-width=\"120\"",
|
|
|
+ "resource-width=\"200\""
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "resource-style": {
|
|
|
+ "type": "Function",
|
|
|
+ "category": "style",
|
|
|
+ "desc": "Gets called to provide custom styling of a resource",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The data passed to the function",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "A timestamp object associated with the interval"
|
|
|
+ },
|
|
|
+ "index": {
|
|
|
+ "type": "Number",
|
|
|
+ "desc": "The resource index"
|
|
|
+ },
|
|
|
+ "resource": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The resource object"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "returns": "A Vue style object",
|
|
|
+ "default": "{}",
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ],
|
|
|
+ "examples": [
|
|
|
+ ":resource-style=\"resourceStyle\""
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "events": {
|
|
|
+ "input": {
|
|
|
+ "desc": "Emitted when calendar date changes",
|
|
|
+ "params": {
|
|
|
+ "value": {
|
|
|
+ "type": "String",
|
|
|
+ "desc": "In YYYY-mm-dd format",
|
|
|
+ "required": true,
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "change": {
|
|
|
+ "desc": "Emitted when the calendar dates change. For instance, if in `month` view, the `start` contains the timestamp object for the 1st of the month, and `end` contains the timestamp object for the last day of the month",
|
|
|
+ "params": {
|
|
|
+ "start": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object for the first valid date being displayed",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ },
|
|
|
+ "end": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object for the last valid date being displayed",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "moved": {
|
|
|
+ "desc": "Emitted when the date is moved",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object of the move. For instance, if in month view, this will be the timestamp object containing the 1st of the month",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "click:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "contextmenu:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousedown:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseup:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseenter:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseleave:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousemove:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchstart:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchend:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchmove:date": {
|
|
|
+ "desc": "Occurs on date button",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ "click:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "contextmenu:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousedown:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseup:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseenter:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseleave:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousemove:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchstart:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchend:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchmove:day": {
|
|
|
+ "desc": "Occurs on day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ "click:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "contextmenu:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousedown:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseup:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseenter:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseleave:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousemove:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchstart:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchend:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchmove:interval": {
|
|
|
+ "desc": "Occurs on interval area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ "click:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "contextmenu:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousedown:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseup:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseenter:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseleave:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousemove:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchstart:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchend:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchmove:time": {
|
|
|
+ "desc": "Occurs on interval time area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "The timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ "click:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "contextmenu:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousedown:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseup:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseenter:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseleave:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousemove:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchstart:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchend:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchmove:resource": {
|
|
|
+ "desc": "Occurs on resource area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object and resource index",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ "click:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "contextmenu:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousedown:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseup:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseenter:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mouseleave:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "mousemove:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchstart:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchend:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "touchmove:resource:day": {
|
|
|
+ "desc": "Occurs on resource day area",
|
|
|
+ "params": {
|
|
|
+ "timestamp": {
|
|
|
+ "type": "Object",
|
|
|
+ "desc": "Object contains resource object, resource index and the timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "methods": {
|
|
|
+ "prev": {
|
|
|
+ "desc": "Triggers component to display previous",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ },
|
|
|
+ "next": {
|
|
|
+ "desc": "Triggers component to display next",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ },
|
|
|
+ "move": {
|
|
|
+ "desc": "Triggers component to move for count iterations, depending on positive (forwards) or negative (backwards) value",
|
|
|
+ "params": {
|
|
|
+ "count": {
|
|
|
+ "type": "Number",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "updateCurrent": {
|
|
|
+ "desc": "Update various values to be consistent with current date",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "scopedSlots": {
|
|
|
+ "day-header": {
|
|
|
+ "desc": "index is added if using `column-count` property",
|
|
|
+ "params": {
|
|
|
+ "day": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "day-body": {
|
|
|
+ "desc": "index is added if using `column-count` property",
|
|
|
+ "params": {
|
|
|
+ "day": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Day",
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "intervals-header": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "days": {
|
|
|
+ "value": "Array",
|
|
|
+ "desc": "An array of Timestamp objects",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "interval": {
|
|
|
+ "desc": "index is added if using `column-count` property",
|
|
|
+ "data": "",
|
|
|
+ "params": {
|
|
|
+ "timeStartPos": {
|
|
|
+ "value": "Function",
|
|
|
+ "desc": "Given a time, will return the css top value",
|
|
|
+ "params": {
|
|
|
+ "time": {
|
|
|
+ "type": "String",
|
|
|
+ "desc": "Format is HH:mm (24 hour format)",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "timeDurationHeight": {
|
|
|
+ "value": "Function",
|
|
|
+ "desc": "Given a duration (in seconds), will return the css height value",
|
|
|
+ "params": {
|
|
|
+ "duration": {
|
|
|
+ "type": "Number",
|
|
|
+ "desc": "The number of seconds for the event",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "column-header-before": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "day": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "column-header-after": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "day": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Day"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "day": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "day": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "month-label": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object with monthLabel",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "day-of-year": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "work-week-label": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "Timestamp object with workWeekLabel",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Month"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "scheduler-resources-header": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "scheduler-day-header": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "scheduler-column-header-before": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "scheduler-column-header-after": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "scheduler-resource-day": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "scheduler-resource": {
|
|
|
+ "desc": "",
|
|
|
+ "params": {
|
|
|
+ "data": {
|
|
|
+ "value": "Object",
|
|
|
+ "desc": "",
|
|
|
+ "__exemption": [ "examples" ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "applicable": [
|
|
|
+ "Scheduler"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|