first commit

This commit is contained in:
Warunee Tamkoo 2023-09-06 14:51:44 +07:00
commit eb2f504652
32490 changed files with 5731109 additions and 0 deletions

78
node_modules/quasar/dist/api/AppFullscreen.json generated vendored Normal file
View file

@ -0,0 +1,78 @@
{
"type": "plugin",
"meta": {
"docsUrl": "https://v2.quasar.dev/quasar-plugins/app-fullscreen"
},
"injection": "$q.fullscreen",
"props": {
"isCapable": {
"type": "Boolean",
"desc": "Does browser support it?"
},
"isActive": {
"type": "Boolean",
"desc": "Is Fullscreen active?"
},
"activeEl": {
"type": [
"Element",
"null"
],
"desc": "The DOM element used as root for fullscreen, otherwise 'null'",
"examples": [
"document.fullscreenElement",
"null"
]
}
},
"methods": {
"request": {
"desc": "Request going into Fullscreen (with optional target)",
"params": {
"target": {
"type": "Element",
"desc": "Optional Element of target to request Fullscreen on",
"examples": [
"document.getElementById('example')"
]
}
},
"returns": {
"type": "Promise<void>",
"desc": "A Promise which is resolved when transitioned to fullscreen mode. It gets rejected with 'Not capable' if the browser is not capable, and with an Error object if something else went wrong.",
"examples": [
"request().then(response => { ... }).catch(err => { ... })"
]
}
},
"exit": {
"desc": "Request exiting out of Fullscreen mode",
"returns": {
"type": "Promise<void>",
"desc": "A Promise which is resolved when exited out of fullscreen mode. It gets rejected with 'Not capable' if the browser is not capable, and with an Error object if something else went wrong.",
"examples": [
"exit().then(response => { ... }).catch(err => { ... })"
]
}
},
"toggle": {
"desc": "Request toggling Fullscreen mode (with optional target if requesting going into Fullscreen only)",
"params": {
"target": {
"type": "Element",
"desc": "Optional Element of target to request Fullscreen on",
"examples": [
"document.getElementById('example')"
]
}
},
"returns": {
"type": "Promise<void>",
"desc": "A Promise which is resolved when transitioned to / exited out of fullscreen mode. It gets rejected with 'Not capable' if the browser is not capable, and with an Error object if something else went wrong.",
"examples": [
"toggle().then(response => { ... }).catch(err => { ... })"
]
}
}
}
}