Skip to content

Commit

Permalink
Update API doc
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed May 7, 2023
1 parent a760c56 commit eb3536c
Showing 1 changed file with 90 additions and 0 deletions.
90 changes: 90 additions & 0 deletions doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -28780,6 +28780,80 @@
"methodDescription": "Defines methods that can be accessed by the component's reference.",
"typeDescription": "Defines the custom types used by the module.",
"values": {
"SliderPassThroughMethodOptions": {
"description": "Custom passthrough(pt) option method.",
"relatedProp": "",
"props": [
{
"name": "props",
"optional": false,
"readonly": false,
"type": "SliderProps",
"default": ""
}
],
"methods": []
},
"SliderPassThroughOptions": {
"description": "Custom passthrough(pt) options.",
"relatedProp": "SliderProps.pt",
"props": [
{
"name": "root",
"optional": true,
"readonly": false,
"type": "SliderPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the root's DOM element."
},
{
"name": "range",
"optional": true,
"readonly": false,
"type": "SliderPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the range's DOM element."
},
{
"name": "handle",
"optional": true,
"readonly": false,
"type": "SliderPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the handle's DOM element."
},
{
"name": "startHandler",
"optional": true,
"readonly": false,
"type": "SliderPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the start handler's DOM element."
},
{
"name": "endHandler",
"optional": true,
"readonly": false,
"type": "SliderPassThroughOptionType",
"default": "",
"description": "Uses to pass attributes to the end handler's DOM element."
}
],
"methods": []
},
"SliderPassThroughAttributes": {
"description": "Custom passthrough attributes for each DOM elements",
"relatedProp": "",
"props": [
{
"name": "[key: string]",
"optional": false,
"readonly": false,
"type": "any"
}
],
"methods": []
},
"SliderSlideEndEvent": {
"description": "Custom slide end event.",
"relatedProp": "SliderEmits.slideend",
Expand Down Expand Up @@ -28886,6 +28960,14 @@
"type": "string",
"default": "",
"description": "Used to define a string that labels the element."
},
{
"name": "pt",
"optional": true,
"readonly": false,
"type": "SliderPassThroughOptions",
"default": "",
"description": "Uses to pass attributes to DOM elements inside the component."
}
],
"methods": []
Expand Down Expand Up @@ -28943,6 +29025,14 @@
]
}
}
},
"types": {
"description": "Defines the custom types used by the module.",
"values": {
"SliderPassThroughOptionType": {
"values": "SliderPassThroughAttributes | (options: SliderPassThroughMethodOptions) => SliderPassThroughAttributes | null | undefined"
}
}
}
},
"speeddial": {
Expand Down

0 comments on commit eb3536c

Please sign in to comment.