Skip to content

Commit 727ee55

Browse files
cb1kenobigithub-actions[bot]
authored andcommitted
Apply automatic changes
1 parent d8857dd commit 727ee55

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

docs/api/api.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36388,8 +36388,12 @@
3638836388
{
3638936389
"name": "keyboardframechanged",
3639036390
"summary": "Fired when the soft keyboard is presented, on and off the screen.",
36391-
"description": "This event fires when the application presents the soft keyboard on/off the screen . The\nevent returns the dictionary `keyboardFrame` containing `x`, `y`, `height` and `width` keys,\ncorresponding to the frame of the keyboard with respect to the screen coordinates.\n\nOn Titanium SDK 4.0.0 and later the event also contains a second parameter `animationDuration` representing\nthe duration of the animation for the presentation and dismissal of the soft keyboard.\n\nNote that the keyboard `height` and `width` properties will not be accurate when the keyboard\nis being dissmissed.\n",
36391+
"description": "This event fires when the application presents the soft keyboard on/off the screen . The\nevent on iOS returns the dictionary `keyboardFrame` containing `x`, `y`, `height` and `width` keys,\ncorresponding to the frame of the keyboard with respect to the screen coordinates.\n\nOn Titanium SDK 4.0.0 and later the event also contains a second parameter `animationDuration` representing\nthe duration of the animation for the presentation and dismissal of the soft keyboard.\n\nNote that the keyboard `height` and `width` properties will not be accurate when the keyboard\nis being dissmissed.\n\nFor Android it will only work using Android 11 and up. The return values are empty but you can use\n`keyboardVisible` to check if the keyboard is visible or not.\n",
3639236392
"platforms": [
36393+
{
36394+
"since": "12.7.0",
36395+
"name": "android"
36396+
},
3639336397
{
3639436398
"since": "3.0.0",
3639536399
"name": "iphone"
@@ -37274,13 +37278,18 @@
3727437278
{
3727537279
"name": "keyboardVisible",
3727637280
"summary": "Indicates whether or not the soft keyboard is visible.",
37281+
"description": "On Android it will only work using Android 11 and up. Otherwise it will always be false.\n",
3727737282
"platforms": [
3727837283
{
37279-
"since": "0.8",
37284+
"since": "12.7.0",
37285+
"name": "android"
37286+
},
37287+
{
37288+
"since": "7.5.0",
3728037289
"name": "iphone"
3728137290
},
3728237291
{
37283-
"since": "0.8",
37292+
"since": "7.5.0",
3728437293
"name": "ipad"
3728537294
},
3728637295
{

0 commit comments

Comments
 (0)