From 5053b0120a7ad213a05fe6209b068e13e0e51be5 Mon Sep 17 00:00:00 2001 From: Diego Barreiro Perez Date: Sun, 10 May 2026 23:20:08 +0100 Subject: [PATCH 1/2] Implement Enum Support --- docs/assets/css/extra.css | 4 + docs/components/drawing-and-animation/ball.md | 26 ++- .../drawing-and-animation/image-sprite.md | 26 ++- .../layout/general/horizontal-arrangement.md | 16 +- .../general/horizontal-scroll-arrangement.md | 16 +- .../layout/general/vertical-arrangement.md | 16 +- .../general/vertical-scroll-arrangement.md | 16 +- .../lego-mindstorms/ev3/ev3-color-sensor.md | 8 +- .../lego-mindstorms/ev3/ev3-gyro-sensor.md | 7 +- .../ev3/ev3-ultrasonic-sensor.md | 7 +- .../nxt/nxt-direct-commands.md | 168 ++++++++++++++++-- docs/components/maps/map.md | 15 +- docs/components/maps/marker.md | 16 +- docs/components/maps/navigation.md | 9 +- docs/components/media/qr-code.md | 8 +- .../advertising/google-ad-manager-app-open.md | 16 +- .../advertising/google-ad-manager-banner.md | 16 +- .../google-ad-manager-interstitial.md | 16 +- .../google-ad-manager-native-ad-layout.md | 16 +- ...google-ad-manager-rewarded-interstitial.md | 16 +- .../advertising/google-ad-manager-rewarded.md | 16 +- .../advertising/startio-interstitial.md | 9 +- .../advertising/startio-native-ad-layout.md | 9 +- .../advertising/unity-banner-ad.md | 8 +- docs/components/screen.md | 129 +++++++++++++- .../sensors/accelerometer-sensor.md | 8 +- docs/components/sensors/biometric-prompt.md | 8 +- docs/components/social/phone-call.md | 15 +- docs/components/social/texting.md | 8 +- docs/components/storage/file.md | 132 ++++++++++++-- 30 files changed, 708 insertions(+), 72 deletions(-) diff --git a/docs/assets/css/extra.css b/docs/assets/css/extra.css index 25a33f54c..98bbe287e 100644 --- a/docs/assets/css/extra.css +++ b/docs/assets/css/extra.css @@ -269,6 +269,10 @@ img[src*="#animationUtilsPreview"] { background-color: rgb(208, 95, 45); } +.chip-enum { + background-color: rgb(155, 89, 182); +} + .md-content__inner { word-break: break-word; } diff --git a/docs/components/drawing-and-animation/ball.md b/docs/components/drawing-and-animation/ball.md index 061344205..6ae779f02 100644 --- a/docs/components/drawing-and-animation/ball.md +++ b/docs/components/drawing-and-animation/ball.md @@ -47,7 +47,18 @@ Event handler called when the Ball reaches an edge of the screen. If Bounce is t | Params | []() | |--------|------| -|edge|Number| +|edge|Number
Direction| + +| edge Options | []() | +|--------|------| +|North|Option for North| +|Northeast|Option for Northeast| +|East|Option for East| +|Southeast|Option for Southeast| +|South|Option for South| +|Southwest|Option for Southwest| +|West|Option for West| +|Northwest|Option for Northwest| ### Flung @@ -117,7 +128,18 @@ Makes the Ball bounce, as if off a wall. For normal bouncing, the edge argument | Params | []() | |--------|------| -|edge|Number| +|edge|Number
Direction| + +| edge Options | []() | +|--------|------| +|North|Option for North| +|Northeast|Option for Northeast| +|East|Option for East| +|Southeast|Option for Southeast| +|South|Option for South| +|Southwest|Option for Southwest| +|West|Option for West| +|Northwest|Option for Northwest| ### Colliding With diff --git a/docs/components/drawing-and-animation/image-sprite.md b/docs/components/drawing-and-animation/image-sprite.md index a0807e58c..085ada249 100644 --- a/docs/components/drawing-and-animation/image-sprite.md +++ b/docs/components/drawing-and-animation/image-sprite.md @@ -50,7 +50,18 @@ Event handler called when the ImageSprite reaches an edge of the screen. If Boun | Params | []() | |--------|------| -|edge|Number| +|edge|Number
Direction| + +| edge Options | []() | +|--------|------| +|North|Option for North| +|Northeast|Option for Northeast| +|East|Option for East| +|Southeast|Option for Southeast| +|South|Option for South| +|Southwest|Option for Southwest| +|West|Option for West| +|Northwest|Option for Northwest| ### Flung @@ -120,7 +131,18 @@ Makes the ImageSprite bounce, as if off a wall. For normal bouncing, the edge ar | Params | []() | |--------|------| -|edge|Number| +|edge|Number
Direction| + +| edge Options | []() | +|--------|------| +|North|Option for North| +|Northeast|Option for Northeast| +|East|Option for East| +|Southeast|Option for Southeast| +|South|Option for South| +|Southwest|Option for Southwest| +|West|Option for West| +|Northwest|Option for Northwest| ### Colliding With diff --git a/docs/components/layout/general/horizontal-arrangement.md b/docs/components/layout/general/horizontal-arrangement.md index 6362560d2..dfe53da95 100644 --- a/docs/components/layout/general/horizontal-arrangement.md +++ b/docs/components/layout/general/horizontal-arrangement.md @@ -26,22 +26,34 @@ Long click listener event. ### Align Horizontal -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number HorizontalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how contents of the arrangement are aligned horizontally. The choices are: 1 = left aligned, 2 = right aligned, 3 = horizontally centered. Alignment has no effect if the arrangement's width is automatic.
+| Options | []() | +|--------|------| +|Left|Option for Left| +|Center|Option for Center| +|Right|Option for Right| + ### Align Vertical -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number VerticalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how the contents of the arrangement are aligned vertically. The choices are: 1 = aligned at the top, 2 = vertically centered, 3 = aligned at the bottom. Alignment has no effect if the arrangement's height is automatic.
+| Options | []() | +|--------|------| +|Top|Option for Top| +|Center|Option for Center| +|Bottom|Option for Bottom| + ### Background Color Color Default: #00000000  :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/layout/general/horizontal-scroll-arrangement.md b/docs/components/layout/general/horizontal-scroll-arrangement.md index 4bd7d453c..1e04105b6 100644 --- a/docs/components/layout/general/horizontal-scroll-arrangement.md +++ b/docs/components/layout/general/horizontal-scroll-arrangement.md @@ -28,22 +28,34 @@ Long click listener event. ### Align Horizontal -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number HorizontalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how contents of the arrangement are aligned horizontally. The choices are: 1 = left aligned, 2 = right aligned, 3 = horizontally centered. Alignment has no effect if the arrangement's width is automatic.
+| Options | []() | +|--------|------| +|Left|Option for Left| +|Center|Option for Center| +|Right|Option for Right| + ### Align Vertical -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number VerticalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how the contents of the arrangement are aligned vertically. The choices are: 1 = aligned at the top, 2 = vertically centered, 3 = aligned at the bottom. Alignment has no effect if the arrangement's height is automatic.
+| Options | []() | +|--------|------| +|Top|Option for Top| +|Center|Option for Center| +|Bottom|Option for Bottom| + ### Background Color Color Default: #00000000  :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/layout/general/vertical-arrangement.md b/docs/components/layout/general/vertical-arrangement.md index 9c7b70c8e..663b3268e 100644 --- a/docs/components/layout/general/vertical-arrangement.md +++ b/docs/components/layout/general/vertical-arrangement.md @@ -26,22 +26,34 @@ Long click listener event. ### Align Horizontal -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number HorizontalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how contents of the arrangement are aligned horizontally. The choices are: 1 = left aligned, 2 = right aligned, 3 = horizontally centered. Alignment has no effect if the arrangement's width is automatic.
+| Options | []() | +|--------|------| +|Left|Option for Left| +|Center|Option for Center| +|Right|Option for Right| + ### Align Vertical -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number VerticalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how the contents of the arrangement are aligned vertically. The choices are: 1 = aligned at the top, 2 = vertically centered, 3 = aligned at the bottom. Alignment has no effect if the arrangement's height is automatic.
+| Options | []() | +|--------|------| +|Top|Option for Top| +|Center|Option for Center| +|Bottom|Option for Bottom| + ### Background Color Color Default: #00000000  :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/layout/general/vertical-scroll-arrangement.md b/docs/components/layout/general/vertical-scroll-arrangement.md index 08d008003..8dd40541a 100644 --- a/docs/components/layout/general/vertical-scroll-arrangement.md +++ b/docs/components/layout/general/vertical-scroll-arrangement.md @@ -28,22 +28,34 @@ Long click listener event. ### Align Horizontal -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number HorizontalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how contents of the arrangement are aligned horizontally. The choices are: 1 = left aligned, 2 = right aligned, 3 = horizontally centered. Alignment has no effect if the arrangement's width is automatic.
+| Options | []() | +|--------|------| +|Left|Option for Left| +|Center|Option for Center| +|Right|Option for Right| + ### Align Vertical -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number VerticalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how the contents of the arrangement are aligned vertically. The choices are: 1 = aligned at the top, 2 = vertically centered, 3 = aligned at the bottom. Alignment has no effect if the arrangement's height is automatic.
+| Options | []() | +|--------|------| +|Top|Option for Top| +|Center|Option for Center| +|Bottom|Option for Bottom| + ### Background Color Color Default: #00000000  :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md b/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md index 7747d85ae..ae56cb722 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md +++ b/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md @@ -140,13 +140,19 @@ Whether the ColorChanged event should fire when the Mode property is set to "col ### Mode -Text Default: reflected :heavy_minus_sign: Read Write - Designer Blocks +Text ColorSensorMode Default: reflected :heavy_minus_sign: Read Write - Designer Blocks Specifies the mode of the sensor.
+| Options | []() | +|--------|------| +|Reflected|Option for Reflected| +|Ambient|Option for Ambient| +|Color|Option for Color| + ### Sensor Port Text Default: 1 :heavy_minus_sign: Write - Designer diff --git a/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md b/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md index 811e348cc..ee4bd0682 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md +++ b/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md @@ -61,13 +61,18 @@ The BluetoothClient component that should be used for communication. ### Mode -Text Default: angle :heavy_minus_sign: Read Write - Designer Blocks +Text GyroSensorMode Default: angle :heavy_minus_sign: Read Write - Designer Blocks Specifies the mode of the sensor.
+| Options | []() | +|--------|------| +|Angle|Option for Angle| +|Rate|Option for Rate| + ### Sensor Port Text Default: 1 :heavy_minus_sign: Write - Designer diff --git a/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md b/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md index 6502bada0..3f2d74d90 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md +++ b/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md @@ -111,13 +111,18 @@ The top of the range used for the BelowRange, WithinRange, and AboveRange events ### Unit -Text Default: cm :heavy_minus_sign: Read Write - Designer Blocks +Text UltrasonicSensorUnit Default: cm :heavy_minus_sign: Read Write - Designer Blocks Specifies the unit of distance.
+| Options | []() | +|--------|------| +|Centimeters|Option for Centimeters| +|Inches|Option for Inches| + ### Within Range Event Enabled Boolean Default: False :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md b/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md index 0c06121a0..a146749f7 100644 --- a/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md +++ b/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md @@ -75,7 +75,14 @@ Reads the values of an input sensor on the robot. Assumes sensor type has been c | Params | []() | |--------|------| -|sensor Port Letter|Text| +|sensor Port Letter|Text
NxtSensorPort| + +| sensor Port Letter Options | []() | +|--------|------| +|Port1|Option for Port1| +|Port2|Option for Port2| +|Port3|Option for Port3| +|Port4|Option for Port4| ### Get Output State @@ -87,7 +94,13 @@ Reads the output state of a motor on the robot. | Params | []() | |--------|------| -|motor Port Letter|Text| +|motor Port Letter|Text
NxtMotorPort| + +| motor Port Letter Options | []() | +|--------|------| +|PortA|Option for PortA| +|PortB|Option for PortB| +|PortC|Option for PortC| ### Keep Alive @@ -119,7 +132,14 @@ Returns the count of available bytes to read. | Params | []() | |--------|------| -|sensor Port Letter|Text| +|sensor Port Letter|Text
NxtSensorPort| + +| sensor Port Letter Options | []() | +|--------|------| +|Port1|Option for Port1| +|Port2|Option for Port2| +|Port3|Option for Port3| +|Port4|Option for Port4| ### Ls Read @@ -131,7 +151,14 @@ Reads unsigned low speed data from an input sensor on the robot. Assumes sensor | Params | []() | |--------|------| -|sensor Port Letter|Text| +|sensor Port Letter|Text
NxtSensorPort| + +| sensor Port Letter Options | []() | +|--------|------| +|Port1|Option for Port1| +|Port2|Option for Port2| +|Port3|Option for Port3| +|Port4|Option for Port4| ### Ls Write @@ -141,10 +168,17 @@ Writes low speed data to an input sensor on the robot. Assumes sensor type has b | Params | []() | |--------|------| -|sensor Port Letter|Text| +|sensor Port Letter|Text
NxtSensorPort| |list|List| |rx Data Length|Number| +| sensor Port Letter Options | []() | +|--------|------| +|Port1|Option for Port1| +|Port2|Option for Port2| +|Port3|Option for Port3| +|Port4|Option for Port4| + ### Message Read Returns: Text @@ -155,7 +189,20 @@ Read a message from a mailbox (1-10) on the robot. | Params | []() | |--------|------| -|mailbox|Number| +|mailbox|Number
NxtMailbox| + +| mailbox Options | []() | +|--------|------| +|Box1|Option for Box1| +|Box2|Option for Box2| +|Box3|Option for Box3| +|Box4|Option for Box4| +|Box5|Option for Box5| +|Box6|Option for Box6| +|Box7|Option for Box7| +|Box8|Option for Box8| +|Box9|Option for Box9| +|Box10|Option for Box10| ### Message Write @@ -165,9 +212,22 @@ Write a message to a mailbox (1-10) on the robot. | Params | []() | |--------|------| -|mailbox|Number| +|mailbox|Number
NxtMailbox| |message|Text| +| mailbox Options | []() | +|--------|------| +|Box1|Option for Box1| +|Box2|Option for Box2| +|Box3|Option for Box3| +|Box4|Option for Box4| +|Box5|Option for Box5| +|Box6|Option for Box6| +|Box7|Option for Box7| +|Box8|Option for Box8| +|Box9|Option for Box9| +|Box10|Option for Box10| + ### Play Sound File Play a sound file on the robot. @@ -197,7 +257,14 @@ Reset the scaled value of an input sensor on the robot. | Params | []() | |--------|------| -|sensor Port Letter|Text| +|sensor Port Letter|Text
NxtSensorPort| + +| sensor Port Letter Options | []() | +|--------|------| +|Port1|Option for Port1| +|Port2|Option for Port2| +|Port3|Option for Port3| +|Port4|Option for Port4| ### Reset Motor Position @@ -207,9 +274,15 @@ Reset motor position. | Params | []() | |--------|------| -|motor Port Letter|Text| +|motor Port Letter|Text
NxtMotorPort| |relative|Boolean| +| motor Port Letter Options | []() | +|--------|------| +|PortA|Option for PortA| +|PortB|Option for PortB| +|PortC|Option for PortC| + ### Set Brick Name Set the brick name of the robot. @@ -228,9 +301,46 @@ Configure an input sensor on the robot. | Params | []() | |--------|------| -|sensor Port Letter|Text| -|sensor Type|Number| -|sensor Mode|Number| +|sensor Port Letter|Text
NxtSensorPort| +|sensor Type|Number
NxtSensorType| +|sensor Mode|Number
NxtSensorMode| + +| sensor Port Letter Options | []() | +|--------|------| +|Port1|Option for Port1| +|Port2|Option for Port2| +|Port3|Option for Port3| +|Port4|Option for Port4| + +| sensor Type Options | []() | +|--------|------| +|NoSensor|Option for NoSensor| +|Touch|Option for Touch| +|LightOn|Option for LightOn| +|LightOff|Option for LightOff| +|SoundDB|Option for SoundDB| +|SoundDBA|Option for SoundDBA| +|ColorFull|Option for ColorFull| +|ColorRed|Option for ColorRed| +|ColorGreen|Option for ColorGreen| +|ColorBlue|Option for ColorBlue| +|ColorNone|Option for ColorNone| +|Digital12C|Option for Digital12C| +|Digital12C9V|Option for Digital12C9V| +|RcxTemperature|Option for RcxTemperature| +|RcxLight|Option for RcxLight| +|RcxAngle|Option for RcxAngle| + +| sensor Mode Options | []() | +|--------|------| +|Raw|Option for Raw| +|Boolean|Option for Boolean| +|TransitionCount|Option for TransitionCount| +|PeriodCount|Option for PeriodCount| +|Percentage|Option for Percentage| +|RcxCelsius|Option for RcxCelsius| +|RcxFahrenheit|Option for RcxFahrenheit| +|RcxAngleSteps|Option for RcxAngleSteps| ### Set Output State @@ -240,14 +350,40 @@ Sets the output state of a motor on the robot. | Params | []() | |--------|------| -|motor Port Letter|Text| +|motor Port Letter|Text
NxtMotorPort| |power|Number| -|mode|Number| -|regulation Mode|Number| +|mode|Number
NxtMotorMode| +|regulation Mode|Number
NxtRegulationMode| |turn Ratio|Number| -|run State|Number| +|run State|Number
NxtRunState| |tacho Limit|Number| +| motor Port Letter Options | []() | +|--------|------| +|PortA|Option for PortA| +|PortB|Option for PortB| +|PortC|Option for PortC| + +| mode Options | []() | +|--------|------| +|On|Option for On| +|Brake|Option for Brake| +|Regulated|Option for Regulated| +|Coast|Option for Coast| + +| regulation Mode Options | []() | +|--------|------| +|Disabled|Option for Disabled| +|Speed|Option for Speed| +|Synchronization|Option for Synchronization| + +| run State Options | []() | +|--------|------| +|Disabled|Option for Disabled| +|Running|Option for Running| +|RampUp|Option for RampUp| +|RampDown|Option for RampDown| + ### Start Program Start execution of a previously downloaded program on the robot. diff --git a/docs/components/maps/map.md b/docs/components/maps/map.md index 1da91b758..9d930ed87 100644 --- a/docs/components/maps/map.md +++ b/docs/components/maps/map.md @@ -309,7 +309,7 @@ The longitude of the center of the map. ### Map Type -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number MapType Default: 1 :heavy_minus_sign: Read Write - Designer Blocks Set the type of map tile used for the base tile layer. Valid values are: @@ -320,6 +320,12 @@ Set the type of map tile used for the base tile layer. Valid values are:
+| Options | []() | +|--------|------| +|Road|Option for Road| +|Aerial|Option for Aerial| +|Terrain|Option for Terrain| + ### Rotation Number Default: 0.0 :heavy_minus_sign: Read Write - Designer Blocks @@ -331,13 +337,18 @@ Sets or gets the rotation of the map in decimal degrees if any ### Scale Units -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number ScaleUnits Default: 1 :heavy_minus_sign: Read Write - Designer Blocks Property for ScaleUnits
+| Options | []() | +|--------|------| +|Metric|Option for Metric| +|Imperial|Option for Imperial| + ### Show Compass Boolean Default: False :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/maps/marker.md b/docs/components/maps/marker.md index b279cc804..b61eed1ab 100644 --- a/docs/components/maps/marker.md +++ b/docs/components/maps/marker.md @@ -121,22 +121,34 @@ Show the infobox for the feature. This will show the infobox even if ### Anchor Horizontal -Number Default: 3 :heavy_minus_sign: Read Write - Designer Blocks +Number HorizontalAlignment Default: 3 :heavy_minus_sign: Read Write - Designer Blocks The horizontal alignment property controls where the Marker's anchor is located relative to its width. The choices are: 1 = left aligned, 3 = horizontally centered, 2 = right aligned.
+| Options | []() | +|--------|------| +|Left|Option for Left| +|Center|Option for Center| +|Right|Option for Right| + ### Anchor Vertical -Number Default: 3 :heavy_minus_sign: Read Write - Designer Blocks +Number VerticalAlignment Default: 3 :heavy_minus_sign: Read Write - Designer Blocks The vertical alignment property controls where the Marker's anchor is located relative to its height. The choices are: 1 = aligned at the top, 2 = vertically centered, 3 = aligned at the bottom.
+| Options | []() | +|--------|------| +|Top|Option for Top| +|Center|Option for Center| +|Bottom|Option for Bottom| + ### Description Text :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/maps/navigation.md b/docs/components/maps/navigation.md index 65311418c..ad466f0e0 100644 --- a/docs/components/maps/navigation.md +++ b/docs/components/maps/navigation.md @@ -117,9 +117,16 @@ The longitude of the start location. ### Transportation Method -Text Default: foot-walking :heavy_minus_sign: Read Write - Designer Blocks +Text TransportMethod Default: foot-walking :heavy_minus_sign: Read Write - Designer Blocks The transportation method used for determining the route.
+ +| Options | []() | +|--------|------| +|Foot|Option for Foot| +|Car|Option for Car| +|Bicycle|Option for Bicycle| +|Wheelchair|Option for Wheelchair| diff --git a/docs/components/media/qr-code.md b/docs/components/media/qr-code.md index 5d73cb846..806b365dc 100644 --- a/docs/components/media/qr-code.md +++ b/docs/components/media/qr-code.md @@ -55,13 +55,19 @@ Set the charset of the input text. ### Format -Com.google.appinventor.components.common.qrcodeformatenum Default: png :heavy_minus_sign: Read Write - Designer Blocks +Text QrCodeFormat Default: png :heavy_minus_sign: Read Write - Designer Blocks Output image format used when generating the QR code image. Supported values are PNG (default), JPEG and WebP.
+| Options | []() | +|--------|------| +|Png|Option for Png| +|Jpeg|Option for Jpeg| +|Webp|Option for Webp| + ### Front Color Color Default: #000000FF  :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/monetization/advertising/google-ad-manager-app-open.md b/docs/components/monetization/advertising/google-ad-manager-app-open.md index 9e87192dc..ce96d6427 100644 --- a/docs/components/monetization/advertising/google-ad-manager-app-open.md +++ b/docs/components/monetization/advertising/google-ad-manager-app-open.md @@ -106,13 +106,27 @@ If enabled, the component will automatically load an ad when the app starts. ### eCPM Floor -Com.google.appinventor.components.common.flooramountenum Default: optimized :heavy_minus_sign: Read Write - Designer Blocks +Text FloorAmount Default: optimized :heavy_minus_sign: Read Write - Designer Blocks Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use Optimized to let Google decide an eCPM floor.
+| Options | []() | +|--------|------| +|Optimized|Option for Optimized| +|USD_04_50|Option for USD_04_50| +|USD_04_00|Option for USD_04_00| +|USD_03_50|Option for USD_03_50| +|USD_03_00|Option for USD_03_00| +|USD_02_50|Option for USD_02_50| +|USD_02_00|Option for USD_02_00| +|USD_01_50|Option for USD_01_50| +|USD_01_00|Option for USD_01_00| +|USD_00_80|Option for USD_00_80| +|USD_00_50|Option for USD_00_50| + ### Is Ad Available Boolean :heavy_minus_sign: Read - Blocks diff --git a/docs/components/monetization/advertising/google-ad-manager-banner.md b/docs/components/monetization/advertising/google-ad-manager-banner.md index eb685fcfe..88c7094e4 100644 --- a/docs/components/monetization/advertising/google-ad-manager-banner.md +++ b/docs/components/monetization/advertising/google-ad-manager-banner.md @@ -86,13 +86,27 @@ Property for AdUnitId ### eCPM Floor -Com.google.appinventor.components.common.flooramountenum Default: optimized :heavy_minus_sign: Read Write - Designer Blocks +Text FloorAmount Default: optimized :heavy_minus_sign: Read Write - Designer Blocks Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use Optimized to let Google decide an eCPM floor.
+| Options | []() | +|--------|------| +|Optimized|Option for Optimized| +|USD_04_50|Option for USD_04_50| +|USD_04_00|Option for USD_04_00| +|USD_03_50|Option for USD_03_50| +|USD_03_00|Option for USD_03_00| +|USD_02_50|Option for USD_02_50| +|USD_02_00|Option for USD_02_00| +|USD_01_50|Option for USD_01_50| +|USD_01_00|Option for USD_01_00| +|USD_00_80|Option for USD_00_80| +|USD_00_50|Option for USD_00_50| + ### Test Mode Boolean Default: False :heavy_minus_sign: Write - Designer diff --git a/docs/components/monetization/advertising/google-ad-manager-interstitial.md b/docs/components/monetization/advertising/google-ad-manager-interstitial.md index 6ca1f21a4..073379e03 100644 --- a/docs/components/monetization/advertising/google-ad-manager-interstitial.md +++ b/docs/components/monetization/advertising/google-ad-manager-interstitial.md @@ -92,13 +92,27 @@ Property for AdUnitId ### eCPM Floor -Com.google.appinventor.components.common.flooramountenum Default: optimized :heavy_minus_sign: Read Write - Designer Blocks +Text FloorAmount Default: optimized :heavy_minus_sign: Read Write - Designer Blocks Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use Optimized to let Google decide an eCPM floor.
+| Options | []() | +|--------|------| +|Optimized|Option for Optimized| +|USD_04_50|Option for USD_04_50| +|USD_04_00|Option for USD_04_00| +|USD_03_50|Option for USD_03_50| +|USD_03_00|Option for USD_03_00| +|USD_02_50|Option for USD_02_50| +|USD_02_00|Option for USD_02_00| +|USD_01_50|Option for USD_01_50| +|USD_01_00|Option for USD_01_00| +|USD_00_80|Option for USD_00_80| +|USD_00_50|Option for USD_00_50| + ### Test Mode Boolean Default: False :heavy_minus_sign: Write - Designer diff --git a/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md b/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md index 928455af9..be65f06ec 100644 --- a/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md +++ b/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md @@ -116,13 +116,27 @@ The button component that should be used as call-to-action button of the ad. ### eCPM Floor -Com.google.appinventor.components.common.flooramountenum Default: optimized :heavy_minus_sign: Read Write - Designer Blocks +Text FloorAmount Default: optimized :heavy_minus_sign: Read Write - Designer Blocks Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use Optimized to let Google decide an eCPM floor.
+| Options | []() | +|--------|------| +|Optimized|Option for Optimized| +|USD_04_50|Option for USD_04_50| +|USD_04_00|Option for USD_04_00| +|USD_03_50|Option for USD_03_50| +|USD_03_00|Option for USD_03_00| +|USD_02_50|Option for USD_02_50| +|USD_02_00|Option for USD_02_00| +|USD_01_50|Option for USD_01_50| +|USD_01_00|Option for USD_01_00| +|USD_00_80|Option for USD_00_80| +|USD_00_50|Option for USD_00_50| + ### Headline Label Component :heavy_minus_sign: Write - Designer Blocks diff --git a/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md b/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md index 794cb9702..caf61c8f4 100644 --- a/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md +++ b/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md @@ -102,13 +102,27 @@ Property for AdUnitId ### eCPM Floor -Com.google.appinventor.components.common.flooramountenum Default: optimized :heavy_minus_sign: Read Write - Designer Blocks +Text FloorAmount Default: optimized :heavy_minus_sign: Read Write - Designer Blocks Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use Optimized to let Google decide an eCPM floor.
+| Options | []() | +|--------|------| +|Optimized|Option for Optimized| +|USD_04_50|Option for USD_04_50| +|USD_04_00|Option for USD_04_00| +|USD_03_50|Option for USD_03_50| +|USD_03_00|Option for USD_03_00| +|USD_02_50|Option for USD_02_50| +|USD_02_00|Option for USD_02_00| +|USD_01_50|Option for USD_01_50| +|USD_01_00|Option for USD_01_00| +|USD_00_80|Option for USD_00_80| +|USD_00_50|Option for USD_00_50| + ### Test Mode Boolean Default: False :heavy_minus_sign: Write - Designer diff --git a/docs/components/monetization/advertising/google-ad-manager-rewarded.md b/docs/components/monetization/advertising/google-ad-manager-rewarded.md index c946f995c..e8379d5da 100644 --- a/docs/components/monetization/advertising/google-ad-manager-rewarded.md +++ b/docs/components/monetization/advertising/google-ad-manager-rewarded.md @@ -103,13 +103,27 @@ Property for AdUnitId ### eCPM Floor -Com.google.appinventor.components.common.flooramountenum Default: optimized :heavy_minus_sign: Read Write - Designer Blocks +Text FloorAmount Default: optimized :heavy_minus_sign: Read Write - Designer Blocks Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use Optimized to let Google decide an eCPM floor.
+| Options | []() | +|--------|------| +|Optimized|Option for Optimized| +|USD_04_50|Option for USD_04_50| +|USD_04_00|Option for USD_04_00| +|USD_03_50|Option for USD_03_50| +|USD_03_00|Option for USD_03_00| +|USD_02_50|Option for USD_02_50| +|USD_02_00|Option for USD_02_00| +|USD_01_50|Option for USD_01_50| +|USD_01_00|Option for USD_01_00| +|USD_00_80|Option for USD_00_80| +|USD_00_50|Option for USD_00_50| + ### Test Mode Boolean Default: False :heavy_minus_sign: Write - Designer diff --git a/docs/components/monetization/advertising/startio-interstitial.md b/docs/components/monetization/advertising/startio-interstitial.md index d000f5708..b70a7c6da 100644 --- a/docs/components/monetization/advertising/startio-interstitial.md +++ b/docs/components/monetization/advertising/startio-interstitial.md @@ -94,13 +94,20 @@ It will show the Interstitial Ad ### Ad Type -Text Default: automatic :heavy_minus_sign: Read Write - Designer Blocks +Text StartAppInterstitialAdType Default: automatic :heavy_minus_sign: Read Write - Designer Blocks The type of interstitial ad to load.
+| Options | []() | +|--------|------| +|Automatic|Option for Automatic| +|FullPage|Option for FullPage| +|Video|Option for Video| +|Overlay|Option for Overlay| + ### Enable Consent Boolean Default: True :heavy_minus_sign: Write - Designer Blocks diff --git a/docs/components/monetization/advertising/startio-native-ad-layout.md b/docs/components/monetization/advertising/startio-native-ad-layout.md index f20b407ec..3b0fcab92 100644 --- a/docs/components/monetization/advertising/startio-native-ad-layout.md +++ b/docs/components/monetization/advertising/startio-native-ad-layout.md @@ -139,13 +139,20 @@ The image component for the ad icon. ### Primary Image Size -Text Default: SIZE150X150 :heavy_minus_sign: Read Write - Designer Blocks +Text StartAppNativeAdImageSize Default: SIZE150X150 :heavy_minus_sign: Read Write - Designer Blocks The size of the primary image in native ads.
+| Options | []() | +|--------|------| +|Size72x72|Option for Size72x72| +|Size100x100|Option for Size100x100| +|Size150x150|Option for Size150x150| +|Size340x340|Option for Size340x340| + ### Set User Consent Boolean Default: False :heavy_minus_sign: Write - Designer Blocks diff --git a/docs/components/monetization/advertising/unity-banner-ad.md b/docs/components/monetization/advertising/unity-banner-ad.md index 3b0934ad4..6713a383f 100644 --- a/docs/components/monetization/advertising/unity-banner-ad.md +++ b/docs/components/monetization/advertising/unity-banner-ad.md @@ -63,13 +63,19 @@ Sets the ad unit ID (placement ID) for banner ads. ### Banner Size -Com.google.appinventor.components.common.unitybanneradsizeenum Default: standard :heavy_minus_sign: Read Write - Designer Blocks +Text UnityBannerAdSize Default: standard :heavy_minus_sign: Read Write - Designer Blocks Sets the banner size. Options: standard (320x50), large (320x90), rectangle (300x250).
+| Options | []() | +|--------|------| +|Standard|Option for Standard| +|Large|Option for Large| +|Rectangle|Option for Rectangle| + ### Test Mode Boolean Default: False :heavy_minus_sign: Write - Designer diff --git a/docs/components/screen.md b/docs/components/screen.md index 449557cd9..eec1d4ba6 100644 --- a/docs/components/screen.md +++ b/docs/components/screen.md @@ -126,7 +126,26 @@ Event to handle when the app user has denied a needed permission. |--------|------| |component|Component| |function Name|Text| -|permission Name|Text| +|permission Name|Text
Permission| + +| permission Name Options | []() | +|--------|------| +|CoarseLocation|Option for CoarseLocation| +|FineLocation|Option for FineLocation| +|LocationExtraCommands|Option for LocationExtraCommands| +|ReadExternalStorage|Option for ReadExternalStorage| +|WriteExternalStorage|Option for WriteExternalStorage| +|Camera|Option for Camera| +|Audio|Option for Audio| +|GetAccounts|Option for GetAccounts| +|ReadContacts|Option for ReadContacts| +|BluetoothAdvertise|Option for BluetoothAdvertise| +|BluetoothConnect|Option for BluetoothConnect| +|BluetoothScan|Option for BluetoothScan| +|ReadMediaImages|Option for ReadMediaImages| +|ReadMediaVideo|Option for ReadMediaVideo| +|ReadMediaAudio|Option for ReadMediaAudio| +|PostNotifications|Option for PostNotifications| ### Permission Granted @@ -136,7 +155,26 @@ Event to handle when the app user has granted a needed permission. This event is | Params | []() | |--------|------| -|permission Name|Text| +|permission Name|Text
Permission| + +| permission Name Options | []() | +|--------|------| +|CoarseLocation|Option for CoarseLocation| +|FineLocation|Option for FineLocation| +|LocationExtraCommands|Option for LocationExtraCommands| +|ReadExternalStorage|Option for ReadExternalStorage| +|WriteExternalStorage|Option for WriteExternalStorage| +|Camera|Option for Camera| +|Audio|Option for Audio| +|GetAccounts|Option for GetAccounts| +|ReadContacts|Option for ReadContacts| +|BluetoothAdvertise|Option for BluetoothAdvertise| +|BluetoothConnect|Option for BluetoothConnect| +|BluetoothScan|Option for BluetoothScan| +|ReadMediaImages|Option for ReadMediaImages| +|ReadMediaVideo|Option for ReadMediaVideo| +|ReadMediaAudio|Option for ReadMediaAudio| +|PostNotifications|Option for PostNotifications| ### Screen Orientation Changed @@ -223,7 +261,26 @@ Ask the user to grant access to a dangerous permission. | Params | []() | |--------|------| -|permission Name|Text| +|permission Name|Text
Permission| + +| permission Name Options | []() | +|--------|------| +|CoarseLocation|Option for CoarseLocation| +|FineLocation|Option for FineLocation| +|LocationExtraCommands|Option for LocationExtraCommands| +|ReadExternalStorage|Option for ReadExternalStorage| +|WriteExternalStorage|Option for WriteExternalStorage| +|Camera|Option for Camera| +|Audio|Option for Audio| +|GetAccounts|Option for GetAccounts| +|ReadContacts|Option for ReadContacts| +|BluetoothAdvertise|Option for BluetoothAdvertise| +|BluetoothConnect|Option for BluetoothConnect| +|BluetoothScan|Option for BluetoothScan| +|ReadMediaImages|Option for ReadMediaImages| +|ReadMediaVideo|Option for ReadMediaVideo| +|ReadMediaAudio|Option for ReadMediaAudio| +|PostNotifications|Option for PostNotifications| ### Can Write System Settings @@ -399,22 +456,34 @@ Property for ReceiveSharedText ### Align Horizontal -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number HorizontalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how contents of the screen are aligned horizontally. The choices are: 1 = left aligned, 3 = horizontally centered, 2 = right aligned.
+| Options | []() | +|--------|------| +|Left|Option for Left| +|Center|Option for Center| +|Right|Option for Right| + ### Align Vertical -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number VerticalAlignment Default: 1 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how the contents of the arrangement are aligned vertically. The choices are: 1 = aligned at the top, 2 = vertically centered, 3 = aligned at the bottom. Vertical alignment has no effect if the screen is scrollable.
+| Options | []() | +|--------|------| +|Top|Option for Top| +|Center|Option for Center| +|Bottom|Option for Bottom| + ### App ID Text :heavy_minus_sign: Write - Designer @@ -447,19 +516,37 @@ The screen background image. ### Close Screen Animation -Text Default: default :heavy_minus_sign: Read Write - Designer Blocks +Text ScreenAnimation Default: default :heavy_minus_sign: Read Write - Designer Blocks The animation for closing current screen and returning to the previous screen. Valid options are default, fade, zoom, slidehorizontal, slidevertical, and none
+| Options | []() | +|--------|------| +|Default|Option for Default| +|Fade|Option for Fade| +|Zoom|Option for Zoom| +|SlideHorizontal|Option for SlideHorizontal| +|SlideVertical|Option for SlideVertical| +|None|Option for None| + ### Default File Scope -Com.google.appinventor.components.common.filescopeenum Default: App :heavy_minus_sign: Write - Designer +Text FileScope Default: App :heavy_minus_sign: Write - Designer Specifies the default scope used when components access files. Note that the +| Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Drawer Arrow Icon Color Number :heavy_minus_sign: Read Write - Blocks @@ -586,13 +673,22 @@ Property for OneSignalAppId ### Open Screen Animation -Text Default: default :heavy_minus_sign: Read Write - Designer Blocks +Text ScreenAnimation Default: default :heavy_minus_sign: Read Write - Designer Blocks The animation for switching to another screen. Valid options are default, fade, zoom, slidehorizontal, slidevertical, and none
+| Options | []() | +|--------|------| +|Default|Option for Default| +|Fade|Option for Fade| +|Zoom|Option for Zoom| +|SlideHorizontal|Option for SlideHorizontal| +|SlideVertical|Option for SlideVertical| +|None|Option for None| + ### Options Menu Icon Color Number :heavy_minus_sign: Read Write - Blocks @@ -632,13 +728,28 @@ Property for RTLSupport ### Screen Orientation -Text Default: unspecified :heavy_minus_sign: Read Write - Designer Blocks +Text ScreenOrientation Default: unspecified :heavy_minus_sign: Read Write - Designer Blocks The requested screen orientation, specified as a text value. Commonly used values are landscape, portrait, sensor, user and unspecified. See the Android developer documentation for ActivityInfo.Screen_Orientation for the complete list of possible settings.
+| Options | []() | +|--------|------| +|Unspecified|Option for Unspecified| +|Landscape|Option for Landscape| +|Portrait|Option for Portrait| +|Sensor|Option for Sensor| +|User|Option for User| +|Behind|Option for Behind| +|NoSensor|Option for NoSensor| +|FullSensor|Option for FullSensor| +|ReverseLandscape|Option for ReverseLandscape| +|ReversePortrait|Option for ReversePortrait| +|SensorLandscape|Option for SensorLandscape| +|SensorPortrait|Option for SensorPortrait| + ### Scrollable Boolean Default: False :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/sensors/accelerometer-sensor.md b/docs/components/sensors/accelerometer-sensor.md index c6cbc60e1..28a7f401e 100644 --- a/docs/components/sensors/accelerometer-sensor.md +++ b/docs/components/sensors/accelerometer-sensor.md @@ -70,13 +70,19 @@ The minimum interval, in milliseconds, between phone shakes ### Sensitivity -Number Default: 2 :heavy_minus_sign: Read Write - Designer Blocks +Number Sensitivity Default: 2 :heavy_minus_sign: Read Write - Designer Blocks A number that encodes how sensitive the accelerometer is. The choices are: 1 = weak, 2 = moderate, 3 = strong.
+| Options | []() | +|--------|------| +|Weak|Option for Weak| +|Moderate|Option for Moderate| +|Strong|Option for Strong| + ### X Accel Number :heavy_minus_sign: Read - Blocks diff --git a/docs/components/sensors/biometric-prompt.md b/docs/components/sensors/biometric-prompt.md index 13dd2290c..adb5247f3 100644 --- a/docs/components/sensors/biometric-prompt.md +++ b/docs/components/sensors/biometric-prompt.md @@ -87,13 +87,19 @@ Returns true if authentication is available right now with the current Authentic ### Authenticator Type -Com.google.appinventor.components.common.authenticatortypeenum Default: BiometricOrDeviceCredential :heavy_minus_sign: Read Write - Designer Blocks +Number AuthenticatorType Default: BiometricOrDeviceCredential :heavy_minus_sign: Read Write - Designer Blocks Sets the type of authentication allowed. BiometricOnly = biometrics only, DeviceCredentialOnly = PIN/pattern/password, BiometricOrDeviceCredential = biometrics with PIN fallback.
+| Options | []() | +|--------|------| +|BiometricOnly|Option for BiometricOnly| +|DeviceCredentialOnly|Option for DeviceCredentialOnly| +|BiometricOrDeviceCredential|Option for BiometricOrDeviceCredential| + ### Description Text :heavy_minus_sign: Read Write - Designer Blocks diff --git a/docs/components/social/phone-call.md b/docs/components/social/phone-call.md index cf3cdcc9b..147d1cbc3 100644 --- a/docs/components/social/phone-call.md +++ b/docs/components/social/phone-call.md @@ -39,9 +39,15 @@ Event indicating that a phone call has ended. If status is 1, incoming call is m | Params | []() | |--------|------| -|status|Number| +|status|Number
EndedStatus| |phone Number|Text| +| status Options | []() | +|--------|------| +|IncomingRejected|Option for IncomingRejected| +|IncomingEnded|Option for IncomingEnded| +|OutgoingEnded|Option for OutgoingEnded| + ### Phone Call Started Event indicating that a phonecall has started. If status is 1, incoming call is ringing; if status is 2, outgoing call is dialled. phoneNumber is the incoming/outgoing phone number. @@ -50,9 +56,14 @@ Event indicating that a phonecall has started. If status is 1, incoming call is | Params | []() | |--------|------| -|status|Number| +|status|Number
StartedStatus| |phone Number|Text| +| status Options | []() | +|--------|------| +|Incoming|Option for Incoming| +|Outgoing|Option for Outgoing| + ## Methods ### Make Phone Call diff --git a/docs/components/social/texting.md b/docs/components/social/texting.md index 0a2a30a37..488812c84 100644 --- a/docs/components/social/texting.md +++ b/docs/components/social/texting.md @@ -104,9 +104,15 @@ Sets the phone number to send the text message to when the SendMessage function ### Receiving Enabled -Number Default: 1 :heavy_minus_sign: Read Write - Designer Blocks +Number ReceivingState Default: 1 :heavy_minus_sign: Read Write - Designer Blocks If set to 1 (OFF) no messages will be received. If set to 2 (FOREGROUND) or3 (ALWAYS) the component will respond to messages if it is running. If the app is not running then the message will be discarded if set to 2 (FOREGROUND). If set to 3 (ALWAYS) and the app is not running the phone will show a notification. Selecting the notification will bring up the app and signal the MessageReceived event. Messages received when the app is dormant will be queued, and so several MessageReceived events might appear when the app awakens. As an app developer, it would be a good idea to give your users control over this property, so they can make their phones ignore text messages when your app is installed.
+ +| Options | []() | +|--------|------| +|Off|Option for Off| +|Foreground|Option for Foreground| +|Always|Option for Always| diff --git a/docs/components/storage/file.md b/docs/components/storage/file.md index d2b8cc443..e7b1fbb6b 100644 --- a/docs/components/storage/file.md +++ b/docs/components/storage/file.md @@ -102,11 +102,29 @@ Copy the contents from the first file to the second file. | Params | []() | |--------|------| -|from Scope|Com.google.appinventor.components.common.filescopeenum| +|from Scope|Text
FileScope| |from File Name|Text| -|to Scope|Com.google.appinventor.components.common.filescopeenum| +|to Scope|Text
FileScope| |to File Name|Text| +| from Scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + +| to Scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Create Directory :warning: ==**Deprecated**== @@ -139,9 +157,18 @@ Tests whether the path exists in the given scope. | Params | []() | |--------|------| -|scope|Com.google.appinventor.components.common.filescopeenum| +|scope|Text
FileScope| |path|Text| +| scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### File Size Returns: Number @@ -200,9 +227,18 @@ Tests whether the path named in the given scope is a directory. | Params | []() | |--------|------| -|scope|Com.google.appinventor.components.common.filescopeenum| +|scope|Text
FileScope| |path|Text| +| scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Is File Returns: Boolean @@ -225,9 +261,18 @@ Get a list of files and directories in the given directory. | Params | []() | |--------|------| -|scope|Com.google.appinventor.components.common.filescopeenum| +|scope|Text
FileScope| |directory Name|Text| +| scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Make Directory Returns: Boolean @@ -238,9 +283,18 @@ Create a new directory for storing files. The semantics of this method are such | Params | []() | |--------|------| -|scope|Com.google.appinventor.components.common.filescopeenum| +|scope|Text
FileScope| |directory Name|Text| +| scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Make Full Path Returns: Text @@ -251,9 +305,18 @@ Converts the scope and path into a single string for other components. | Params | []() | |--------|------| -|scope|Com.google.appinventor.components.common.filescopeenum| +|scope|Text
FileScope| |path|Text| +| scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Move :warning: ==**Deprecated**== @@ -279,11 +342,29 @@ Move a file from one location to another. | Params | []() | |--------|------| -|from Scope|Com.google.appinventor.components.common.filescopeenum| +|from Scope|Text
FileScope| |from File Name|Text| -|to Scope|Com.google.appinventor.components.common.filescopeenum| +|to Scope|Text
FileScope| |to File Name|Text| +| from Scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + +| to Scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Read From Reads text from a file in storage. Prefix the filename with / to read from a specific file on the SD card. for instance /myFile.txt will read the file /sdcard/myFile.txt. To read assets packaged with an application (also works for the Companion) start the filename with // (two slashes). If a filename does not start with a slash, it will be read from the applications private storage (for packaged apps) and from /sdcard/AppInventor/data for the Companion. @@ -304,10 +385,19 @@ Remove a directory from the file system. If recursive is true, then everything i | Params | []() | |--------|------| -|scope|Com.google.appinventor.components.common.filescopeenum| +|scope|Text
FileScope| |directory Name|Text| |recursive|Boolean| +| scope Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Save File Saves text to a file. If the filename begins with a slash (/) the file is written to the sdcard. For example writing to /myFile.txt will write the file to /sdcard/myFile.txt. If the filename does not start with a slash, it will be written in the programs private data directory where it will not be accessible to other programs on the phone. There is a special exception for the AI Companion where these files are written to /sdcard/AppInventor/data to facilitate debugging. Note that this block will overwrite a file if it already exists @@ -348,10 +438,19 @@ Create a zip file with or without a password. ### Default Scope -Com.google.appinventor.components.common.filescopeenum Default: App :heavy_minus_sign: Write - Designer +Text FileScope Default: App :heavy_minus_sign: Write - Designer Specifies the default scope for files accessed using the File component. The App scope shouldwork for most apps. Legacy mode can be used for apps that predate the newer constraints inAndroid on app file access. +| Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Read Permission Boolean Default: False :heavy_minus_sign: Write - Designer @@ -360,13 +459,22 @@ A designer-only property that can be used to enable read access to file storage ### Scope -Com.google.appinventor.components.common.filescopeenum :heavy_minus_sign: Read Write - Blocks +Text FileScope Default: App :heavy_minus_sign: Read Write - Blocks Indicates the current scope for operations such as ReadFrom and SaveFile.
+| Options | []() | +|--------|------| +|App|Option for App| +|Asset|Option for Asset| +|Cache|Option for Cache| +|Legacy|Option for Legacy| +|Private|Option for Private| +|Shared|Option for Shared| + ### Write Permission Boolean Default: False :heavy_minus_sign: Write - Designer From 626703b40760d174bc56c03e24ddbe7ad1da6dda Mon Sep 17 00:00:00 2001 From: Diego Barreiro Perez Date: Sun, 10 May 2026 23:24:46 +0100 Subject: [PATCH 2/2] Improve Enums --- .../connectivity/activity-starter.md | 4 +- docs/components/connectivity/arduino.md | 6 +- .../connectivity/bluetooth-admin.md | 16 +- .../connectivity/bluetooth-client.md | 26 +- .../connectivity/bluetooth-server.md | 22 +- docs/components/connectivity/download.md | 8 +- docs/components/connectivity/ftp.md | 20 +- .../connectivity/supabase-authentication.md | 24 +- docs/components/connectivity/web.md | 30 +-- docs/components/deprecated/json.md | 40 +-- docs/components/deprecated/notification.md | 24 +- .../deprecated/password-text-box.md | 6 +- .../deprecated/push-notifications.md | 18 +- .../components/deprecated/unity-ads-banner.md | 2 +- .../deprecated/unity-ads-interstitial.md | 8 +- docs/components/deprecated/whitemobi.md | 2 +- docs/components/drawing-and-animation/ball.md | 62 ++--- .../drawing-and-animation/canvas.md | 36 +-- .../drawing-and-animation/image-editor.md | 48 ++-- .../drawing-and-animation/image-sprite.md | 62 ++--- .../drawing-and-animation/lottie.md | 6 +- docs/components/experimental/clouddb.md | 20 +- .../components/experimental/shortcut-badge.md | 2 +- docs/components/google/cloud-firestore.md | 76 +++--- .../google/firebase-authentication.md | 36 +-- .../google/firebase-cloud-messaging.md | 14 +- .../google/firebase-realtime-database.md | 20 +- .../google/firebase-remote-config.md | 6 +- docs/components/google/firebase-storage.md | 20 +- .../google/google-account-picker.md | 2 +- docs/components/google/google-maps.md | 74 ++--- docs/components/google/google-play-games.md | 14 +- docs/components/google/google-recaptcha.md | 8 +- docs/components/google/play-integrity.md | 8 +- docs/components/google/youtube-player.md | 22 +- docs/components/layout/general/grid-view.md | 2 +- .../layout/general/horizontal-arrangement.md | 16 +- .../general/horizontal-scroll-arrangement.md | 16 +- .../layout/general/vertical-arrangement.md | 16 +- .../general/vertical-scroll-arrangement.md | 16 +- .../layout/lists/list-view-image-and-text.md | 12 +- .../layout/navigation/bottom-navigation.md | 10 +- .../layout/navigation/side-menu-layout.md | 8 +- .../layout/navigation/tab-layout.md | 8 +- .../layout/navigation/view-pager.md | 6 +- docs/components/layout/views/bottom-sheet.md | 4 +- docs/components/layout/views/chat-view.md | 34 +-- .../components/layout/views/gallery-viewer.md | 2 +- docs/components/layout/views/surface-view.md | 6 +- docs/components/layout/views/view-flipper.md | 4 +- docs/components/layout/views/web-viewer.md | 24 +- .../lego-mindstorms/ev3/ev3-color-sensor.md | 10 +- .../lego-mindstorms/ev3/ev3-commands.md | 2 +- .../lego-mindstorms/ev3/ev3-gyro-sensor.md | 8 +- .../lego-mindstorms/ev3/ev3-motors.md | 20 +- .../lego-mindstorms/ev3/ev3-sound.md | 2 +- docs/components/lego-mindstorms/ev3/ev3-ui.md | 12 +- .../ev3/ev3-ultrasonic-sensor.md | 6 +- .../lego-mindstorms/nxt/nxt-color-sensor.md | 2 +- .../nxt/nxt-direct-commands.md | 254 +++++++++--------- .../lego-mindstorms/nxt/nxt-drive.md | 12 +- docs/components/maps/circle.md | 6 +- docs/components/maps/feature-collection.md | 18 +- docs/components/maps/line-string.md | 4 +- docs/components/maps/map.md | 46 ++-- docs/components/maps/marker.md | 26 +- docs/components/maps/navigation.md | 12 +- docs/components/maps/polygon.md | 4 +- docs/components/maps/rectangle.md | 6 +- docs/components/media/audio-picker.md | 14 +- docs/components/media/camcorder.md | 2 +- docs/components/media/camera.md | 2 +- docs/components/media/image-picker.md | 14 +- docs/components/media/metadata.md | 4 +- docs/components/media/ocr.md | 8 +- docs/components/media/player.md | 8 +- docs/components/media/qr-code.md | 10 +- docs/components/media/sound-recorder.md | 2 +- docs/components/media/sound.md | 4 +- docs/components/media/speech-recognizer.md | 2 +- docs/components/media/text-to-speech.md | 4 +- docs/components/media/video-picker.md | 14 +- docs/components/media/video-player.md | 4 +- docs/components/media/yandex-translate.md | 4 +- .../advertising/adcolony-interstitial.md | 4 +- .../monetization/advertising/amazon-banner.md | 2 +- .../advertising/amazon-interstitial.md | 4 +- .../advertising/applovin-interstitial.md | 4 +- .../advertising/facebook-banner.md | 2 +- .../advertising/facebook-interstitial.md | 2 +- .../advertising/facebook-rewarded-video.md | 4 +- .../advertising/google-ad-manager-app-open.md | 28 +- .../advertising/google-ad-manager-banner.md | 26 +- .../google-ad-manager-interstitial.md | 28 +- .../google-ad-manager-native-ad-layout.md | 28 +- ...google-ad-manager-rewarded-interstitial.md | 30 +-- .../advertising/google-ad-manager-rewarded.md | 30 +-- .../advertising/google-admob-app-open.md | 4 +- .../advertising/google-admob-banner.md | 2 +- .../advertising/google-admob-interstitial.md | 4 +- .../google-admob-native-ad-layout.md | 4 +- .../google-admob-rewarded-interstitial.md | 6 +- .../advertising/google-admob-rewarded.md | 6 +- .../monetization/advertising/leadbolt.md | 10 +- .../advertising/startio-banner.md | 4 +- .../advertising/startio-cover-ad.md | 2 +- .../advertising/startio-interstitial.md | 16 +- .../advertising/startio-mrec-ad.md | 2 +- .../advertising/startio-native-ad-layout.md | 14 +- .../advertising/startio-rewarded-ad.md | 4 +- .../advertising/tapjoy-offerwall.md | 18 +- .../advertising/unity-banner-ad.md | 10 +- .../advertising/unity-interstitial-ad.md | 4 +- .../advertising/unity-rewarded-ad.md | 4 +- .../monetization/general/in-app-billing.md | 34 +-- .../monetization/general/pollfish.md | 4 +- docs/components/screen.md | 214 +++++++-------- .../sensors/accelerometer-sensor.md | 10 +- docs/components/sensors/barcode-scanner.md | 2 +- docs/components/sensors/biometric-prompt.md | 10 +- docs/components/sensors/clock.md | 64 ++--- docs/components/sensors/gravity-sensor.md | 2 +- docs/components/sensors/gyroscope-sensor.md | 2 +- docs/components/sensors/hygrometer.md | 2 +- docs/components/sensors/light-sensor.md | 2 +- docs/components/sensors/location-sensor.md | 8 +- .../sensors/magnetic-field-sensor.md | 2 +- docs/components/sensors/near-field.md | 2 +- docs/components/sensors/orientation-sensor.md | 2 +- docs/components/sensors/pedometer.md | 4 +- docs/components/sensors/pressure-sensor.md | 2 +- docs/components/sensors/proximity-sensor.md | 2 +- docs/components/sensors/sound-sensor.md | 2 +- docs/components/sensors/temperature-sensor.md | 2 +- docs/components/social/contact-picker.md | 14 +- docs/components/social/email-picker.md | 6 +- .../social/onesignal-inapp-messages.md | 14 +- .../components/social/onesignal-management.md | 28 +- .../social/onesignal-notifications.md | 14 +- docs/components/social/phone-call.md | 20 +- docs/components/social/phone-number-picker.md | 14 +- docs/components/social/sharing.md | 24 +- docs/components/social/texting.md | 10 +- docs/components/social/twitter.md | 24 +- docs/components/storage/cloudinary.md | 4 +- docs/components/storage/file.md | 220 +++++++-------- docs/components/storage/spreadsheet.md | 30 +-- docs/components/storage/sqlite.md | 26 +- docs/components/storage/supabase-database.md | 36 +-- docs/components/storage/supabase-storage.md | 24 +- docs/components/storage/tiny-db.md | 6 +- docs/components/storage/tiny-web-db.md | 8 +- docs/components/user-interface/button.md | 10 +- docs/components/user-interface/checkbox.md | 2 +- docs/components/user-interface/date-picker.md | 14 +- docs/components/user-interface/label.md | 4 +- .../user-interface/linear-progressbar.md | 4 +- docs/components/user-interface/list-picker.md | 12 +- docs/components/user-interface/notifier.md | 72 ++--- .../components/user-interface/radio-button.md | 2 +- docs/components/user-interface/rating-bar.md | 2 +- docs/components/user-interface/slider.md | 2 +- docs/components/user-interface/snackbar.md | 6 +- docs/components/user-interface/spinner.md | 2 +- docs/components/user-interface/spotlight.md | 2 +- .../user-interface/state-progress-bar.md | 4 +- docs/components/user-interface/switch.md | 6 +- docs/components/user-interface/text-box.md | 6 +- docs/components/user-interface/time-picker.md | 14 +- .../utilities/animation-utilities.md | 26 +- docs/components/utilities/audio.md | 6 +- .../components/utilities/battery-utilities.md | 2 +- docs/components/utilities/color-utilities.md | 10 +- docs/components/utilities/cryptography.md | 38 +-- docs/components/utilities/decoration.md | 6 +- docs/components/utilities/device-utilities.md | 10 +- docs/components/utilities/image-utilities.md | 2 +- docs/components/utilities/keyguard-manager.md | 6 +- .../components/utilities/package-utilities.md | 12 +- .../utilities/resource-utilities.md | 6 +- docs/components/utilities/screenshot.md | 2 +- docs/components/utilities/shell.md | 4 +- docs/components/utilities/wallpaper.md | 8 +- 183 files changed, 1512 insertions(+), 1512 deletions(-) diff --git a/docs/components/connectivity/activity-starter.md b/docs/components/connectivity/activity-starter.md index 8e47f3439..f72de4392 100644 --- a/docs/components/connectivity/activity-starter.md +++ b/docs/components/connectivity/activity-starter.md @@ -34,7 +34,7 @@ The ActivityError event is no longer used. Please use the Screen.ErrorOccurred e
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -44,7 +44,7 @@ Event raised after this ActivityStarter returns.
-| Params | []() | +| Param | Type | |--------|------| |result|Text| diff --git a/docs/components/connectivity/arduino.md b/docs/components/connectivity/arduino.md index b73710244..f4c4b38e3 100644 --- a/docs/components/connectivity/arduino.md +++ b/docs/components/connectivity/arduino.md @@ -18,7 +18,7 @@ Triggered after Read function
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |data|Text| @@ -31,7 +31,7 @@ Default baud rate is 9600 bps
-| Params | []() | +| Param | Type | |--------|------| |baud Rate|Number| @@ -77,6 +77,6 @@ Write Data to Serial
-| Params | []() | +| Param | Type | |--------|------| |data|Text| diff --git a/docs/components/connectivity/bluetooth-admin.md b/docs/components/connectivity/bluetooth-admin.md index fb26ee44e..a09ca0947 100644 --- a/docs/components/connectivity/bluetooth-admin.md +++ b/docs/components/connectivity/bluetooth-admin.md @@ -24,7 +24,7 @@ Event triggers when Pairing has finished.
-| Params | []() | +| Param | Type | |--------|------| |address|Text| @@ -34,7 +34,7 @@ Event triggers when Scanning has finished.
-| Params | []() | +| Param | Type | |--------|------| |paired Devices|Any| |new Devices|Any| @@ -45,7 +45,7 @@ Event triggers when Unpairing has finished.
-| Params | []() | +| Param | Type | |--------|------| |address|Text| @@ -55,7 +55,7 @@ Event triggers when an error occurred.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -65,7 +65,7 @@ Event triggers when the bluetooth state changed.
-| Params | []() | +| Param | Type | |--------|------| |state|Text| @@ -105,7 +105,7 @@ Pair Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |address|Text| @@ -143,7 +143,7 @@ Unpair Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |address|Text| @@ -155,7 +155,7 @@ Returns true if the MacAddress is valid.
-| Params | []() | +| Param | Type | |--------|------| |mac Address|Text| diff --git a/docs/components/connectivity/bluetooth-client.md b/docs/components/connectivity/bluetooth-client.md index acd917282..e90604da0 100644 --- a/docs/components/connectivity/bluetooth-client.md +++ b/docs/components/connectivity/bluetooth-client.md @@ -25,7 +25,7 @@ The BluetoothError event is no longer used. Please use the Screen.ErrorOccurred
-| Params | []() | +| Param | Type | |--------|------| |function Name|Text| |message|Text| @@ -48,7 +48,7 @@ Connect to the Bluetooth device with the specified address and the Serial Port P
-| Params | []() | +| Param | Type | |--------|------| |address|Text| @@ -60,7 +60,7 @@ Connect to the Bluetooth device with the specified address and UUID. Returns tru
-| Params | []() | +| Param | Type | |--------|------| |address|Text| |uuid|Text| @@ -79,7 +79,7 @@ Checks whether the Bluetooth device with the specified address is paired.
-| Params | []() | +| Param | Type | |--------|------| |address|Text| @@ -115,7 +115,7 @@ Receive multiple signed byte values from the connected Bluetooth device. If numb
-| Params | []() | +| Param | Type | |--------|------| |number Of Bytes|Number| @@ -127,7 +127,7 @@ Receive text from the connected Bluetooth device. If numberOfBytes is less than
-| Params | []() | +| Param | Type | |--------|------| |number Of Bytes|Number| @@ -163,7 +163,7 @@ Receive multiple unsigned byte values from the connected Bluetooth device. If nu
-| Params | []() | +| Param | Type | |--------|------| |number Of Bytes|Number| @@ -175,7 +175,7 @@ Remove the Name from a Bluetooth Address and Name String.
-| Params | []() | +| Param | Type | |--------|------| |address And Name|Text| @@ -185,7 +185,7 @@ Send a 1-byte number to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| @@ -195,7 +195,7 @@ Send a 2-byte number to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| @@ -205,7 +205,7 @@ Send a 4-byte number to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| @@ -215,7 +215,7 @@ Send a list of byte values to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |list|List| @@ -225,7 +225,7 @@ Send text to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| diff --git a/docs/components/connectivity/bluetooth-server.md b/docs/components/connectivity/bluetooth-server.md index ccdf0f1f0..63d4cb8c7 100644 --- a/docs/components/connectivity/bluetooth-server.md +++ b/docs/components/connectivity/bluetooth-server.md @@ -23,7 +23,7 @@ The BluetoothError event is no longer used. Please use the Screen.ErrorOccurred
-| Params | []() | +| Param | Type | |--------|------| |function Name|Text| |message|Text| @@ -42,7 +42,7 @@ Accept an incoming connection with the Serial Port Profile (SPP).
-| Params | []() | +| Param | Type | |--------|------| |service Name|Text| @@ -52,7 +52,7 @@ Accept an incoming connection with a specific UUID.
-| Params | []() | +| Param | Type | |--------|------| |service Name|Text| |uuid|Text| @@ -103,7 +103,7 @@ Receive multiple signed byte values from the connected Bluetooth device. If numb
-| Params | []() | +| Param | Type | |--------|------| |number Of Bytes|Number| @@ -115,7 +115,7 @@ Receive text from the connected Bluetooth device. If numberOfBytes is less than
-| Params | []() | +| Param | Type | |--------|------| |number Of Bytes|Number| @@ -151,7 +151,7 @@ Receive multiple unsigned byte values from the connected Bluetooth device. If nu
-| Params | []() | +| Param | Type | |--------|------| |number Of Bytes|Number| @@ -161,7 +161,7 @@ Send a 1-byte number to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| @@ -171,7 +171,7 @@ Send a 2-byte number to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| @@ -181,7 +181,7 @@ Send a 4-byte number to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| @@ -191,7 +191,7 @@ Send a list of byte values to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |list|List| @@ -201,7 +201,7 @@ Send text to the connected Bluetooth device.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| diff --git a/docs/components/connectivity/download.md b/docs/components/connectivity/download.md index c13dfb065..fe33ec5b9 100644 --- a/docs/components/connectivity/download.md +++ b/docs/components/connectivity/download.md @@ -23,7 +23,7 @@ Event to detect if the download is successful finished. You can use the "filePat
-| Params | []() | +| Param | Type | |--------|------| |file Path|Text| |file Name|Text| @@ -35,7 +35,7 @@ Event to detect file size is ready to be used.
-| Params | []() | +| Param | Type | |--------|------| |size|Number| @@ -51,7 +51,7 @@ Get the progress (in percentage) of the current download task.
-| Params | []() | +| Param | Type | |--------|------| |progress|Number| @@ -69,7 +69,7 @@ Get the file size (in bytes) of a file that is stored online or on your device.
-| Params | []() | +| Param | Type | |--------|------| |path|Text| diff --git a/docs/components/connectivity/ftp.md b/docs/components/connectivity/ftp.md index 46e54ef47..baeb55f51 100644 --- a/docs/components/connectivity/ftp.md +++ b/docs/components/connectivity/ftp.md @@ -23,7 +23,7 @@ This event returns the reason if a try to connect was not successful.
-| Params | []() | +| Param | Type | |--------|------| |error|Text| @@ -33,7 +33,7 @@ This event returns the status of the connection. If it is connect it will return
-| Params | []() | +| Param | Type | |--------|------| |is Connected|Boolean| @@ -43,7 +43,7 @@ This event returns the reason if a try to disconnect was not successful.
-| Params | []() | +| Param | Type | |--------|------| |error|Text| @@ -59,7 +59,7 @@ This event returns the reason if a download was not successful.
-| Params | []() | +| Param | Type | |--------|------| |error|Text| @@ -75,7 +75,7 @@ This event returns the reason if a upload was not successful.
-| Params | []() | +| Param | Type | |--------|------| |error|Text| @@ -93,7 +93,7 @@ Delete a directory on the ftp server.
-| Params | []() | +| Param | Type | |--------|------| |dir|Text| @@ -109,7 +109,7 @@ Start downloading a file.
-| Params | []() | +| Param | Type | |--------|------| |remote Filepath|Text| |destination|Text| @@ -122,7 +122,7 @@ Get a list of files in a directory. Returns a empty list if a error occurs.
-| Params | []() | +| Param | Type | |--------|------| |dir|Text| @@ -132,7 +132,7 @@ Make/create a directory on the ftp server.
-| Params | []() | +| Param | Type | |--------|------| |dir|Text| @@ -142,7 +142,7 @@ Start uploading a file.
-| Params | []() | +| Param | Type | |--------|------| |file Path|Text| |new Name|Text| diff --git a/docs/components/connectivity/supabase-authentication.md b/docs/components/connectivity/supabase-authentication.md index 4afe53353..311ee163d 100644 --- a/docs/components/connectivity/supabase-authentication.md +++ b/docs/components/connectivity/supabase-authentication.md @@ -22,7 +22,7 @@ Fired when any operation fails
-| Params | []() | +| Param | Type | |--------|------| |operation|Text| |status Code|Number| @@ -34,7 +34,7 @@ Fired when current user information is retrieved
-| Params | []() | +| Param | Type | |--------|------| |user Id|Text| |email|Text| @@ -46,7 +46,7 @@ Fired when an OTP email has been sent
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -56,7 +56,7 @@ Fired when a password reset email has been sent
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -66,7 +66,7 @@ Fired when the session token has been refreshed
-| Params | []() | +| Param | Type | |--------|------| |access Token|Text| @@ -76,7 +76,7 @@ Fired when sign-in succeeds (password or OTP)
-| Params | []() | +| Param | Type | |--------|------| |access Token|Text| |user Id|Text| @@ -94,7 +94,7 @@ Fired when sign-up succeeds. accessToken is non-empty if email confirmation is d
-| Params | []() | +| Param | Type | |--------|------| |access Token|Text| |user Id|Text| @@ -120,7 +120,7 @@ Send a password reset email
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -130,7 +130,7 @@ Send a 6-digit OTP code to the specified email
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -140,7 +140,7 @@ Sign in with email and password
-| Params | []() | +| Param | Type | |--------|------| |email|Text| |password|Text| @@ -157,7 +157,7 @@ Register a new user with email and password
-| Params | []() | +| Param | Type | |--------|------| |email|Text| |password|Text| @@ -168,7 +168,7 @@ Verify an email OTP code and sign in
-| Params | []() | +| Param | Type | |--------|------| |email|Text| |otp|Text| diff --git a/docs/components/connectivity/web.md b/docs/components/connectivity/web.md index 67c3cbc1c..9afa8e955 100644 --- a/docs/components/connectivity/web.md +++ b/docs/components/connectivity/web.md @@ -21,7 +21,7 @@ Event indicating that a request has finished.
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |response Code|Number| @@ -34,7 +34,7 @@ Event indicating that a request has finished.
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |response Code|Number| @@ -47,7 +47,7 @@ Event indicating that a request has timed out.
-| Params | []() | +| Param | Type | |--------|------| |url|Text| @@ -61,7 +61,7 @@ Converts a list of two-element sublists, representing name and value pairs, to a
-| Params | []() | +| Param | Type | |--------|------| |list|List| @@ -95,7 +95,7 @@ Decodes the given HTML text value. HTML character entities such as &, &a
-| Params | []() | +| Param | Type | |--------|------| |html Text|Text| @@ -108,7 +108,7 @@ A JSON list [x, y, z] decodes to a list (x y z), A JSON object with name A and v
-| Params | []() | +| Param | Type | |--------|------| |json Text|Text| @@ -120,7 +120,7 @@ If the SaveResponse property is false, the GotText event will be triggered.
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -133,7 +133,7 @@ If the SaveResponse property is false, the GotText event will be triggered.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| @@ -146,7 +146,7 @@ If the SaveResponse property is false, the GotText event will be triggered.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |encoding|Text| @@ -159,7 +159,7 @@ If the SaveResponse property is false, the GotText event will be triggered.
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -172,7 +172,7 @@ If the SaveResponse property is false, the GotText event will be triggered.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| @@ -185,7 +185,7 @@ If the SaveResponse property is false, the GotText event will be triggered.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |encoding|Text| @@ -198,7 +198,7 @@ Decodes the encoded text value.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| @@ -210,7 +210,7 @@ Encodes the given text value so that it can be used in a URL.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| @@ -222,7 +222,7 @@ Decodes the given XML string to produce a list structure. See the App Inventor d
-| Params | []() | +| Param | Type | |--------|------| |XmlText|Text| diff --git a/docs/components/deprecated/json.md b/docs/components/deprecated/json.md index 0cca41cf2..836e39b4b 100644 --- a/docs/components/deprecated/json.md +++ b/docs/components/deprecated/json.md @@ -21,7 +21,7 @@ Triggers when there is a JSON error.
-| Params | []() | +| Param | Type | |--------|------| |function Name|Text| |error Message|Text| @@ -36,7 +36,7 @@ Add True or False to a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |true Or false|Boolean| @@ -50,7 +50,7 @@ Add True or False to a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |true Or false|Boolean| @@ -65,7 +65,7 @@ Add a JSON Array to a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |new JSONArray|Text| @@ -79,7 +79,7 @@ Add a JSON Object to a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |jsonObject|Text| @@ -93,7 +93,7 @@ Add a JSON Object to a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |new JSONObject|Text| @@ -108,7 +108,7 @@ Add a Number to a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |number|Number| @@ -122,7 +122,7 @@ Add a Number to a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |number|Number| @@ -137,7 +137,7 @@ Add Text to a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |text|Text| @@ -151,7 +151,7 @@ Add Text to a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |text|Text| @@ -166,7 +166,7 @@ Get a True or False from a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |index|Number| @@ -180,7 +180,7 @@ Get a true or false value from a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |name|Text| @@ -194,7 +194,7 @@ Get a JSON Array from a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |name|Text| @@ -208,7 +208,7 @@ Get a JSON Object from a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |index|Number| @@ -222,7 +222,7 @@ Get a JSON Object from a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |name|Text| @@ -236,7 +236,7 @@ Get the length of a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |default Value|Number| @@ -249,7 +249,7 @@ Get a Number from a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |index|Number| @@ -263,7 +263,7 @@ Get a number from a JSON Object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |name|Text| @@ -277,7 +277,7 @@ Get Text from a JSON Array.
-| Params | []() | +| Param | Type | |--------|------| |jsonArray|Text| |index|Number| @@ -291,7 +291,7 @@ Get text from a JSON object.
-| Params | []() | +| Param | Type | |--------|------| |jsonObject|Text| |name|Text| diff --git a/docs/components/deprecated/notification.md b/docs/components/deprecated/notification.md index 32a6f8dd8..670c9850a 100644 --- a/docs/components/deprecated/notification.md +++ b/docs/components/deprecated/notification.md @@ -35,7 +35,7 @@ Cancel a Notification with an id
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -45,7 +45,7 @@ Set the accent color for Android Car devices
-| Params | []() | +| Param | Type | |--------|------| |accent Color|Number| @@ -55,7 +55,7 @@ Set the background image for Android Wear devices
-| Params | []() | +| Param | Type | |--------|------| |background Image|Text| @@ -65,7 +65,7 @@ Set whether the notification should me removed after the user clicks on it.
-| Params | []() | +| Param | Type | |--------|------| |auto Cancel|Boolean| @@ -75,7 +75,7 @@ Set the big picture for the notification
-| Params | []() | +| Param | Type | |--------|------| |big Picture|Text| @@ -85,7 +85,7 @@ Set the notification id.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -95,7 +95,7 @@ Set the notification builder priority. 1 = "Default", 2 = "high", 3 = "low", 4 =
-| Params | []() | +| Param | Type | |--------|------| |priority|Number| @@ -111,7 +111,7 @@ Start building a new notification
-| Params | []() | +| Param | Type | |--------|------| |title|Text| |message|Text| @@ -122,7 +122,7 @@ Set the start value of the notification.
-| Params | []() | +| Param | Type | |--------|------| |start Value|Text| @@ -132,7 +132,7 @@ Set the notification builder visibility. 1 = "public", 2 = "private", 3 = "secre
-| Params | []() | +| Param | Type | |--------|------| |visibility|Number| @@ -142,7 +142,7 @@ Send a advanced notification (Android Wear Support)
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -157,7 +157,7 @@ Send a notification
-| Params | []() | +| Param | Type | |--------|------| |title|Text| |message|Text| diff --git a/docs/components/deprecated/password-text-box.md b/docs/components/deprecated/password-text-box.md index a1496dc32..7a4666df0 100644 --- a/docs/components/deprecated/password-text-box.md +++ b/docs/components/deprecated/password-text-box.md @@ -51,7 +51,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -64,7 +64,7 @@ Set the cursor to the given position.
-| Params | []() | +| Param | Type | |--------|------| |position|Number| @@ -80,7 +80,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| diff --git a/docs/components/deprecated/push-notifications.md b/docs/components/deprecated/push-notifications.md index eab7d51a3..e2bf1c915 100644 --- a/docs/components/deprecated/push-notifications.md +++ b/docs/components/deprecated/push-notifications.md @@ -24,7 +24,7 @@ Event to detect available one signal tags.
-| Params | []() | +| Param | Type | |--------|------| |tags As String|Text| |tags As List|List| @@ -37,7 +37,7 @@ Event to receive value for a tag.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value|Text| @@ -50,7 +50,7 @@ User opened a notification.
-| Params | []() | +| Param | Type | |--------|------| |id|Text| |title|Text| @@ -64,7 +64,7 @@ User received a notification.
-| Params | []() | +| Param | Type | |--------|------| |id|Text| |title|Text| @@ -78,7 +78,7 @@ Returns true if your message was send with success out of your app to all users.
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| @@ -100,7 +100,7 @@ Deletes a single tag that was previously set on a user.
-| Params | []() | +| Param | Type | |--------|------| |key|Text| @@ -120,7 +120,7 @@ Get value for tag.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value If Tag Not There|Text| @@ -133,7 +133,7 @@ Send a message to all users. The message and your REST Api Key can not be empty!
-| Params | []() | +| Param | Type | |--------|------| |title|Text| |message|Text| @@ -147,7 +147,7 @@ Tag a user based on an app event of your choosing so later you can create segmen
-| Params | []() | +| Param | Type | |--------|------| |key|Text| |value|Text| diff --git a/docs/components/deprecated/unity-ads-banner.md b/docs/components/deprecated/unity-ads-banner.md index 10fb83d88..217fb3b2a 100644 --- a/docs/components/deprecated/unity-ads-banner.md +++ b/docs/components/deprecated/unity-ads-banner.md @@ -29,7 +29,7 @@ Called when an ad request failed to load. The message will display the error cod
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| diff --git a/docs/components/deprecated/unity-ads-interstitial.md b/docs/components/deprecated/unity-ads-interstitial.md index b36a8192a..88d695237 100644 --- a/docs/components/deprecated/unity-ads-interstitial.md +++ b/docs/components/deprecated/unity-ads-interstitial.md @@ -25,7 +25,7 @@ Called when an ad was closed.
-| Params | []() | +| Param | Type | |--------|------| |placement Id|Text| |was Skipped|Boolean| @@ -37,7 +37,7 @@ Called when an ad was opened.
-| Params | []() | +| Param | Type | |--------|------| |placement Id|Text| @@ -47,7 +47,7 @@ Called when an ad was started.
-| Params | []() | +| Param | Type | |--------|------| |placement Id|Text| @@ -57,7 +57,7 @@ Called when an ad request failed. The message will display the reason for why th
-| Params | []() | +| Param | Type | |--------|------| |error|Text| diff --git a/docs/components/deprecated/whitemobi.md b/docs/components/deprecated/whitemobi.md index 4bf52c352..91f221b56 100644 --- a/docs/components/deprecated/whitemobi.md +++ b/docs/components/deprecated/whitemobi.md @@ -25,7 +25,7 @@ Event triggered when an offer has been completed
-| Params | []() | +| Param | Type | |--------|------| |amount|Number| diff --git a/docs/components/drawing-and-animation/ball.md b/docs/components/drawing-and-animation/ball.md index 6ae779f02..183f3c52c 100644 --- a/docs/components/drawing-and-animation/ball.md +++ b/docs/components/drawing-and-animation/ball.md @@ -20,7 +20,7 @@ Event handler called when two enabled sprites (Balls or ImageSprites)collide. No
-| Params | []() | +| Param | Type | |--------|------| |other|Component| @@ -30,7 +30,7 @@ Event handler called when a Ball is dragged. On all calls, the starting coordina
-| Params | []() | +| Param | Type | |--------|------| |start X|Number| |start Y|Number| @@ -45,20 +45,20 @@ Event handler called when the Ball reaches an edge of the screen. If Bounce is t
-| Params | []() | +| Param | Type | |--------|------| |edge|Number
Direction| -| edge Options | []() | +| edge Option | Value | |--------|------| -|North|Option for North| -|Northeast|Option for Northeast| -|East|Option for East| -|Southeast|Option for Southeast| -|South|Option for South| -|Southwest|Option for Southwest| -|West|Option for West| -|Northwest|Option for Northwest| +|North|1| +|Northeast|2| +|East|3| +|Southeast|4| +|South|-1| +|Southwest|-2| +|West|-3| +|Northwest|-4| ### Flung @@ -66,7 +66,7 @@ Event handler called when a fling gesture (quick swipe) is made on an enabled Ba
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -81,7 +81,7 @@ Event handler called when a pair of sprites (Balls and ImageSprites) are no long
-| Params | []() | +| Param | Type | |--------|------| |other|Component| @@ -91,7 +91,7 @@ Event handler called when the user begins touching an enabled Ball (placing thei
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -102,7 +102,7 @@ Event handler called when the user stops touching an enabled Ball (lifting their
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -113,7 +113,7 @@ Event handler called when the user touches an enabled Ball and then immediately
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -126,20 +126,20 @@ Makes the Ball bounce, as if off a wall. For normal bouncing, the edge argument
-| Params | []() | +| Param | Type | |--------|------| |edge|Number
Direction| -| edge Options | []() | +| edge Option | Value | |--------|------| -|North|Option for North| -|Northeast|Option for Northeast| -|East|Option for East| -|Southeast|Option for Southeast| -|South|Option for South| -|Southwest|Option for Southwest| -|West|Option for West| -|Northwest|Option for Northwest| +|North|1| +|Northeast|2| +|East|3| +|Southeast|4| +|South|-1| +|Southwest|-2| +|West|-3| +|Northwest|-4| ### Colliding With @@ -149,7 +149,7 @@ Indicates whether a collision has been registered between this Ball and the pass
-| Params | []() | +| Param | Type | |--------|------| |other|Component| @@ -165,7 +165,7 @@ Sets the x and y coordinates of the Ball. If CenterAtOrigin is true, the center
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -176,7 +176,7 @@ Sets the heading of the Ball toward the point with the coordinates (x, y).
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -187,7 +187,7 @@ Turns the Ball to point towards a designated target sprite (Ball or ImageSprite)
-| Params | []() | +| Param | Type | |--------|------| |target|Component| diff --git a/docs/components/drawing-and-animation/canvas.md b/docs/components/drawing-and-animation/canvas.md index 0d94205e7..77cd5de43 100644 --- a/docs/components/drawing-and-animation/canvas.md +++ b/docs/components/drawing-and-animation/canvas.md @@ -35,7 +35,7 @@ When the user does a drag from one point (prevX, prevY) toanother (x, y). The pa
-| Params | []() | +| Param | Type | |--------|------| |start X|Number| |start Y|Number| @@ -51,7 +51,7 @@ When a fling gesture (quick swipe) is made on the canvas: providesthe (x,y) posi
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -67,7 +67,7 @@ This event is invoked when two-finger pinches. ScaleFactor is the ratio of the a
-| Params | []() | +| Param | Type | |--------|------| |scale Factor|Number| @@ -77,7 +77,7 @@ When the user begins touching the canvas (places finger on canvas andleaves it t
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -88,7 +88,7 @@ When the user stops touching the canvas (lifts finger after aTouchDown event): p
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -99,7 +99,7 @@ When the user touches the canvas and then immediately lifts finger: providesthe
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -119,7 +119,7 @@ Draw an arc on Canvas, by drawing an arc from a specified oval (specified by lef
-| Params | []() | +| Param | Type | |--------|------| |left|Number| |top|Number| @@ -136,7 +136,7 @@ Draws a circle (filled in) with the given radius centered at the given coordinat
-| Params | []() | +| Param | Type | |--------|------| |center X|Number| |center Y|Number| @@ -149,7 +149,7 @@ Draws a line between the given coordinates on the canvas.
-| Params | []() | +| Param | Type | |--------|------| |x1|Number| |y1|Number| @@ -162,7 +162,7 @@ Draws a point at the given coordinates on the canvas.
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -173,7 +173,7 @@ Creates a polygon with with specified number of sides from a radius.
-| Params | []() | +| Param | Type | |--------|------| |center X|Number| |center Y|Number| @@ -190,7 +190,7 @@ Draws a shape on the canvas. pointList should be a list contains sub-lists with
-| Params | []() | +| Param | Type | |--------|------| |point List|List| |fill|Boolean| @@ -201,7 +201,7 @@ Draws the specified text relative to the specified coordinates using the values
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |x|Number| @@ -213,7 +213,7 @@ Draws the specified text starting at the specified coordinates at the specified
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |x|Number| @@ -228,7 +228,7 @@ Gets the color of the specified point. This includes the background and any draw
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -241,7 +241,7 @@ Gets the color of the specified point.
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -262,7 +262,7 @@ Saves a picture of this Canvas to the device's external storage in the file name
-| Params | []() | +| Param | Type | |--------|------| |file Name|Text| @@ -272,7 +272,7 @@ Sets the color of the specified point. This differs from DrawPoint by having an
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| diff --git a/docs/components/drawing-and-animation/image-editor.md b/docs/components/drawing-and-animation/image-editor.md index be96495e0..ba6794dae 100644 --- a/docs/components/drawing-and-animation/image-editor.md +++ b/docs/components/drawing-and-animation/image-editor.md @@ -24,7 +24,7 @@ This methods creates a blur effect.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |scale|Number| @@ -38,7 +38,7 @@ Color boost technique is basically based on color filtering, which is to increas
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |type|Text| @@ -52,7 +52,7 @@ Set a color filter to your image. For example: red = 30; green = 40; blue = 20.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |red|Number| @@ -67,7 +67,7 @@ Flip your image vertical or horizontal. For example: type = 1 (vertical); type =
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |type|Number| @@ -80,7 +80,7 @@ Set a gamma effect to your image. For example: red = 5; green = 10; blue = 20.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |red|Number| @@ -95,7 +95,7 @@ Grayscale is a simple image effect that changes colors to grayscale by default.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| @@ -107,7 +107,7 @@ Set a highlight effect to your image.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| @@ -119,7 +119,7 @@ Change the hue of an image. For example: level = 1 or 2 or 3 or 4 etc.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |level|Number| @@ -132,7 +132,7 @@ Rotate the image to the degree you need it. For example: degree = 100.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |degree|Number| @@ -145,7 +145,7 @@ This effect inverts your image.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| @@ -157,7 +157,7 @@ Return true if image is in landscape format, else return false.
-| Params | []() | +| Param | Type | |--------|------| |image|Text| @@ -169,7 +169,7 @@ Return true if image is in portrait format, else return false.
-| Params | []() | +| Param | Type | |--------|------| |image|Text| @@ -181,7 +181,7 @@ Return true if image is in square format (means as high as wide or as wide as hi
-| Params | []() | +| Param | Type | |--------|------| |image|Text| @@ -193,7 +193,7 @@ This methods creates a new side by side horizontal image.
-| Params | []() | +| Param | Type | |--------|------| |left Image|Text| |right Image|Text| @@ -206,7 +206,7 @@ This methods creates a pixelate image effect. Use as example as pixelation Amoun
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |pixelation Amount|Number| @@ -219,7 +219,7 @@ Set a round corner to your image. For example: round = 45.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |round|Number| @@ -232,7 +232,7 @@ This methods creates a new scale center crop image.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |height|Number| @@ -246,7 +246,7 @@ Set a sepia toning effect to your image. For example: depth = 20; red = 10; gree
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |depth|Number| @@ -262,7 +262,7 @@ Change the brightness of your image. For example: value = 50 (maximum = 255=100%
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |value|Number| @@ -275,7 +275,7 @@ Change the color depth of an image as you wish. For example: bitOffset = 32 (bit
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |bit Offset|Number| @@ -288,7 +288,7 @@ This changes the contrast of your image. For example: value = 1.0 means normal p
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |value|Number| @@ -301,7 +301,7 @@ Make a new image with a shading filter. For example: shadingColor = green(rgb va
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |shading Color|Number| @@ -314,7 +314,7 @@ That's a pretty new other cool effect. It changes the tint color of your image.
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |degree|Number| @@ -327,7 +327,7 @@ Set a watermark effect to an image and change the positon/size or color of the t
-| Params | []() | +| Param | Type | |--------|------| |image A|Text| |text|Text| diff --git a/docs/components/drawing-and-animation/image-sprite.md b/docs/components/drawing-and-animation/image-sprite.md index 085ada249..dc7d4d515 100644 --- a/docs/components/drawing-and-animation/image-sprite.md +++ b/docs/components/drawing-and-animation/image-sprite.md @@ -23,7 +23,7 @@ Event handler called when two enabled sprites (Balls or ImageSprites)collide. No
-| Params | []() | +| Param | Type | |--------|------| |other|Component| @@ -33,7 +33,7 @@ Event handler called when a ImageSprite is dragged. On all calls, the starting c
-| Params | []() | +| Param | Type | |--------|------| |start X|Number| |start Y|Number| @@ -48,20 +48,20 @@ Event handler called when the ImageSprite reaches an edge of the screen. If Boun
-| Params | []() | +| Param | Type | |--------|------| |edge|Number
Direction| -| edge Options | []() | +| edge Option | Value | |--------|------| -|North|Option for North| -|Northeast|Option for Northeast| -|East|Option for East| -|Southeast|Option for Southeast| -|South|Option for South| -|Southwest|Option for Southwest| -|West|Option for West| -|Northwest|Option for Northwest| +|North|1| +|Northeast|2| +|East|3| +|Southeast|4| +|South|-1| +|Southwest|-2| +|West|-3| +|Northwest|-4| ### Flung @@ -69,7 +69,7 @@ Event handler called when a fling gesture (quick swipe) is made on an enabled Im
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -84,7 +84,7 @@ Event handler called when a pair of sprites (Balls and ImageSprites) are no long
-| Params | []() | +| Param | Type | |--------|------| |other|Component| @@ -94,7 +94,7 @@ Event handler called when the user begins touching an enabled ImageSprite (placi
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -105,7 +105,7 @@ Event handler called when the user stops touching an enabled ImageSprite (liftin
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -116,7 +116,7 @@ Event handler called when the user touches an enabled ImageSprite and then immed
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -129,20 +129,20 @@ Makes the ImageSprite bounce, as if off a wall. For normal bouncing, the edge ar
-| Params | []() | +| Param | Type | |--------|------| |edge|Number
Direction| -| edge Options | []() | +| edge Option | Value | |--------|------| -|North|Option for North| -|Northeast|Option for Northeast| -|East|Option for East| -|Southeast|Option for Southeast| -|South|Option for South| -|Southwest|Option for Southwest| -|West|Option for West| -|Northwest|Option for Northwest| +|North|1| +|Northeast|2| +|East|3| +|Southeast|4| +|South|-1| +|Southwest|-2| +|West|-3| +|Northwest|-4| ### Colliding With @@ -152,7 +152,7 @@ Indicates whether a collision has been registered between this ImageSprite and t
-| Params | []() | +| Param | Type | |--------|------| |other|Component| @@ -168,7 +168,7 @@ Moves the ImageSprite so that its left top corner is at the specfied x and y coo
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -179,7 +179,7 @@ Sets the heading of the ImageSprite toward the point with the coordinates (x, y)
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -190,7 +190,7 @@ Turns the ImageSprite to point towards a designated target sprite (Ball or Image
-| Params | []() | +| Param | Type | |--------|------| |target|Component| diff --git a/docs/components/drawing-and-animation/lottie.md b/docs/components/drawing-and-animation/lottie.md index 6e1b531f6..c191d70d1 100644 --- a/docs/components/drawing-and-animation/lottie.md +++ b/docs/components/drawing-and-animation/lottie.md @@ -48,7 +48,7 @@ Set the frame where you want the animation to end.
-| Params | []() | +| Param | Type | |--------|------| |frame|Number| @@ -94,7 +94,7 @@ Set the frame where you want the animation to be now.
-| Params | []() | +| Param | Type | |--------|------| |frame|Number| @@ -110,7 +110,7 @@ Set the frame where you want the animation to start.
-| Params | []() | +| Param | Type | |--------|------| |frame|Number| diff --git a/docs/components/experimental/clouddb.md b/docs/components/experimental/clouddb.md index 1833ce80b..4424d6b89 100644 --- a/docs/components/experimental/clouddb.md +++ b/docs/components/experimental/clouddb.md @@ -22,7 +22,7 @@ Indicates that an error occurred while communicating with the CloudDB Redis serv
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -33,7 +33,7 @@ Launches an event with the tag and value that have been updated.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value|Any| @@ -44,7 +44,7 @@ Event triggered by the "RemoveFirstFromList" function. The argument "value" is t
-| Params | []() | +| Param | Type | |--------|------| |value|Any| @@ -54,7 +54,7 @@ Indicates that a GetValue request has succeeded.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value|Any| @@ -65,7 +65,7 @@ Event triggered when we have received the list of known tags. Used with the "Get
-| Params | []() | +| Param | Type | |--------|------| |value|List| @@ -77,7 +77,7 @@ Append a value to the end of a list atomically. If two devices use this function
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |item To Add|Any| @@ -88,7 +88,7 @@ Remove the tag from CloudDB
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -112,7 +112,7 @@ Get the Value for a tag, doesn't return the value but will cause a GotValue even
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value If Tag Not There|Any| @@ -123,7 +123,7 @@ Return the first element of a list and atomically remove it. If two devices use
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -133,7 +133,7 @@ Store a value at a tag.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value To Store|Any| diff --git a/docs/components/experimental/shortcut-badge.md b/docs/components/experimental/shortcut-badge.md index d1cfd02d2..6d6e51f84 100644 --- a/docs/components/experimental/shortcut-badge.md +++ b/docs/components/experimental/shortcut-badge.md @@ -40,7 +40,7 @@ Use this block to apply a notification badge count.
-| Params | []() | +| Param | Type | |--------|------| |count|Number| diff --git a/docs/components/google/cloud-firestore.md b/docs/components/google/cloud-firestore.md index a8f4154ad..c57f83d6b 100644 --- a/docs/components/google/cloud-firestore.md +++ b/docs/components/google/cloud-firestore.md @@ -22,7 +22,7 @@ Triggered when a batch has been committed successfully. 'operationCount' is the
-| Params | []() | +| Param | Type | |--------|------| |operationCount|Number| @@ -32,7 +32,7 @@ Triggered when any document in a listened collection or query changes. 'document
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |collectionPath|Text| @@ -44,7 +44,7 @@ Triggered when a document has been successfully added. 'documentId' is the auto-
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -55,7 +55,7 @@ Triggered when a listened document changes. 'exists' is false if the document wa
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |collectionPath|Text| @@ -69,7 +69,7 @@ Triggered when a document has been successfully deleted.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -80,7 +80,7 @@ Triggered when a document has been successfully set.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -91,7 +91,7 @@ Triggered when a document has been successfully updated.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -102,7 +102,7 @@ Triggered when a Firestore operation fails. 'operation' identifies what failed (
-| Params | []() | +| Param | Type | |--------|------| |operation|Text| |message|Text| @@ -113,7 +113,7 @@ Triggered when a document has been successfully read. 'data' is a dictionary of
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -125,7 +125,7 @@ Triggered with the result of a document existence check.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -137,7 +137,7 @@ Triggered when a collection query returns results. 'documents' is a list of dict
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documents|List| @@ -148,7 +148,7 @@ Triggered when a real-time listener encounters an error.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |message|Text| @@ -165,7 +165,7 @@ Triggered when a transaction fails.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -183,7 +183,7 @@ Creates a document with an auto-generated ID. Fires DocumentAdded with the gener
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |data|Dictionary| @@ -206,7 +206,7 @@ Queues a delete operation on the current batch.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -217,7 +217,7 @@ Queues a set operation on the current batch.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -229,7 +229,7 @@ Queues an update operation on the current batch.
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -241,7 +241,7 @@ Deletes a document. Fires DocumentDeleted on success or FirestoreError on failur
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -252,7 +252,7 @@ Checks if a document exists. Fires GotDocumentExists on success or FirestoreErro
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -263,7 +263,7 @@ Gets all documents in a collection with no filters. Fires GotDocuments on succes
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| @@ -273,7 +273,7 @@ Reads a single document from the given collection. Fires GotDocument on success
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -286,7 +286,7 @@ Returns whether a listener with the given tag is active.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -296,7 +296,7 @@ Attaches a real-time listener to an entire collection. Fires CollectionChanged w
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |collectionPath|Text| @@ -307,7 +307,7 @@ Attaches a real-time listener to a single document. Fires DocumentChanged when t
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |collectionPath|Text| @@ -319,7 +319,7 @@ Attaches a real-time listener using the current query builder state. Fires Colle
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |collectionPath|Text| @@ -330,7 +330,7 @@ Adds a filter to the query. Operators: =, !=, <, <=, >, >=, array-co
-| Params | []() | +| Param | Type | |--------|------| |field|Text| |operator|Text| @@ -342,7 +342,7 @@ Sets a pagination cursor to end results before the given values. Values must cor
-| Params | []() | +| Param | Type | |--------|------| |values|List| @@ -352,7 +352,7 @@ Limits the number of query results.
-| Params | []() | +| Param | Type | |--------|------| |count|Number| @@ -362,7 +362,7 @@ Adds an ordering clause. Direction must be 'ascending' or 'descending'. Can be c
-| Params | []() | +| Param | Type | |--------|------| |field|Text| |direction|Text| @@ -379,7 +379,7 @@ Executes the accumulated query on the given collection. Fires GotDocuments on su
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| @@ -389,7 +389,7 @@ Sets a pagination cursor to start results after the given values. Values must co
-| Params | []() | +| Param | Type | |--------|------| |values|List| @@ -405,7 +405,7 @@ Creates or overwrites a document with the given data. Fires DocumentSet on succe
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -423,7 +423,7 @@ Removes the listener identified by the given tag.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -433,7 +433,7 @@ Deletes a document inside a transaction. Can ONLY be called inside the Transacti
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -446,7 +446,7 @@ Reads a document inside a transaction. Can ONLY be called inside the Transaction
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -457,7 +457,7 @@ Sets a document inside a transaction. Can ONLY be called inside the TransactionR
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -469,7 +469,7 @@ Updates a document inside a transaction. Can ONLY be called inside the Transacti
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| @@ -481,7 +481,7 @@ Merges fields into an existing document. Fails if the document doesn't exist. Fi
-| Params | []() | +| Param | Type | |--------|------| |collectionPath|Text| |documentId|Text| diff --git a/docs/components/google/firebase-authentication.md b/docs/components/google/firebase-authentication.md index 577081e89..10fafc9f9 100644 --- a/docs/components/google/firebase-authentication.md +++ b/docs/components/google/firebase-authentication.md @@ -30,7 +30,7 @@ Triggers when the current Firebase User was successful loaded
-| Params | []() | +| Param | Type | |--------|------| |user ID|Text| |name|Text| @@ -44,7 +44,7 @@ Triggers when the 'Verify Email' request is completed. Returns true if the verif
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| @@ -54,7 +54,7 @@ Triggers when the 'Get Id Token' got a result. If there was a error it returns a
-| Params | []() | +| Param | Type | |--------|------| |id Token|Text| @@ -64,7 +64,7 @@ Triggers when the Firebase Login failed
-| Params | []() | +| Param | Type | |--------|------| |provider|Text| @@ -74,7 +74,7 @@ Triggers when the Firebase Login was successful
-| Params | []() | +| Param | Type | |--------|------| |provider|Text| |user ID|Text| @@ -89,7 +89,7 @@ Triggers when the 'Send Reset Password Email' got a result. Returns true if the
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| @@ -99,7 +99,7 @@ Triggers when the Firebase Sign Up failed
-| Params | []() | +| Param | Type | |--------|------| |provider|Text| |message|Text| @@ -110,7 +110,7 @@ Triggers when the Firebase Sign Up failed
-| Params | []() | +| Param | Type | |--------|------| |provider|Text| |user ID|Text| @@ -125,7 +125,7 @@ Triggers when updating of the user failed
-| Params | []() | +| Param | Type | |--------|------| |type|Text| @@ -135,7 +135,7 @@ Triggers when updating of the user was successful
-| Params | []() | +| Param | Type | |--------|------| |type|Text| @@ -147,7 +147,7 @@ Try to let the user sign in with Email and Password
-| Params | []() | +| Param | Type | |--------|------| |email|Text| |password|Text| @@ -158,7 +158,7 @@ Create a new user by Email and Password
-| Params | []() | +| Param | Type | |--------|------| |email|Text| |password|Text| @@ -201,7 +201,7 @@ Try to let the user sign in with a Phone Number
-| Params | []() | +| Param | Type | |--------|------| |phone Number|Text| @@ -211,7 +211,7 @@ Get the id token from the current user.
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -221,7 +221,7 @@ Try to update the email of the current user (The user must have been recently si
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -231,7 +231,7 @@ Try to update the phone number of the current user (The user must have been rece
-| Params | []() | +| Param | Type | |--------|------| |phone Number|Text| @@ -241,7 +241,7 @@ Try to update the profile of the current user (The user must have been recently
-| Params | []() | +| Param | Type | |--------|------| |name|Text| |profile Picture|Text| @@ -258,6 +258,6 @@ Verify the SMS code
-| Params | []() | +| Param | Type | |--------|------| |code|Text| diff --git a/docs/components/google/firebase-cloud-messaging.md b/docs/components/google/firebase-cloud-messaging.md index 263383f67..9f30192a7 100644 --- a/docs/components/google/firebase-cloud-messaging.md +++ b/docs/components/google/firebase-cloud-messaging.md @@ -24,7 +24,7 @@ Fired when an error occurs during token retrieval, topic subscription, or Fireba
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -34,7 +34,7 @@ Fired when a message is received from FCM, whether the app is in the foreground
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| |from|Text| @@ -53,7 +53,7 @@ Fired when the user taps a notification. Provides the message data that was incl
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| |title|Text| @@ -67,7 +67,7 @@ Called when the user accepts or declines the permission prompt, or enables or di
-| Params | []() | +| Param | Type | |--------|------| |granted|Boolean| @@ -77,7 +77,7 @@ Fired with the current FCM registration token. Triggered by a GetToken call, and
-| Params | []() | +| Param | Type | |--------|------| |token|Text| @@ -109,7 +109,7 @@ Subscribes to an FCM topic. Messages sent to this topic will be received by this
-| Params | []() | +| Param | Type | |--------|------| |topic|Text| @@ -119,7 +119,7 @@ Unsubscribes from an FCM topic.
-| Params | []() | +| Param | Type | |--------|------| |topic|Text| diff --git a/docs/components/google/firebase-realtime-database.md b/docs/components/google/firebase-realtime-database.md index dadc1e272..30be16fca 100644 --- a/docs/components/google/firebase-realtime-database.md +++ b/docs/components/google/firebase-realtime-database.md @@ -22,7 +22,7 @@ Indicates that the data in the Firebase has changed.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value|Any| @@ -33,7 +33,7 @@ Indicates that the communication with the Firebase signaled an error.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -43,7 +43,7 @@ Event triggered by the "RemoveFirst" function. The argument "value" is the objec
-| Params | []() | +| Param | Type | |--------|------| |value|Any| @@ -53,7 +53,7 @@ Indicates that a GetValue request has succeeded.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value|Any| @@ -70,7 +70,7 @@ Event triggered when we have received the list of known tags. Used with the "Get
-| Params | []() | +| Param | Type | |--------|------| |value|List| @@ -82,7 +82,7 @@ Append a value to the end of a list atomically. If two devices use this function
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value To Add|Any| @@ -93,7 +93,7 @@ Remove the tag from Firebase
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -109,7 +109,7 @@ Method for GetValue
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value If Tag Not There|Any| @@ -132,7 +132,7 @@ Return the first element of a list and atomically remove it. If two devices use
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -142,7 +142,7 @@ Method for StoreValue
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value To Store|Any| diff --git a/docs/components/google/firebase-remote-config.md b/docs/components/google/firebase-remote-config.md index 935c5c8b2..f25714aa8 100644 --- a/docs/components/google/firebase-remote-config.md +++ b/docs/components/google/firebase-remote-config.md @@ -47,7 +47,7 @@ Gets a boolean value corresponding to the specified key
-| Params | []() | +| Param | Type | |--------|------| |key|Text| @@ -59,7 +59,7 @@ Gets a number value corresponding to the specified key
-| Params | []() | +| Param | Type | |--------|------| |key|Text| @@ -71,7 +71,7 @@ Gets a text value corresponding to the specified key
-| Params | []() | +| Param | Type | |--------|------| |key|Text| diff --git a/docs/components/google/firebase-storage.md b/docs/components/google/firebase-storage.md index b1c6d0229..35bb798fe 100644 --- a/docs/components/google/firebase-storage.md +++ b/docs/components/google/firebase-storage.md @@ -24,7 +24,7 @@ Triggers when the file could not be deleted
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |message|Text| @@ -35,7 +35,7 @@ Triggers when the file was successfully deleted
-| Params | []() | +| Param | Type | |--------|------| |file|Text| @@ -45,7 +45,7 @@ Triggers when the file could not be downloaded
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |message|Text| @@ -56,7 +56,7 @@ Triggers when the file was successfully downloaded
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |downloaded File|Text| @@ -67,7 +67,7 @@ Triggers when the file could not be uploaded
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |message|Text| @@ -78,7 +78,7 @@ Triggers when the file upload progress changed
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |upload Path|Text| @@ -91,7 +91,7 @@ Triggers when the file was successfully uploaded
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |upload Path|Text| @@ -105,7 +105,7 @@ Try to delete a file from Firebase Storage
-| Params | []() | +| Param | Type | |--------|------| |file|Text| @@ -115,7 +115,7 @@ Try to download a file from Firebase Storage
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |to Folder|Text| @@ -158,7 +158,7 @@ Try to upload a file to Firebase Storage
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |upload Path|Text| diff --git a/docs/components/google/google-account-picker.md b/docs/components/google/google-account-picker.md index c9913339f..e4309f54b 100644 --- a/docs/components/google/google-account-picker.md +++ b/docs/components/google/google-account-picker.md @@ -18,7 +18,7 @@ Event raised after account has been picked.
-| Params | []() | +| Param | Type | |--------|------| |account Name|Text| diff --git a/docs/components/google/google-maps.md b/docs/components/google/google-maps.md index 790de921a..1786f730d 100644 --- a/docs/components/google/google-maps.md +++ b/docs/components/google/google-maps.md @@ -24,7 +24,7 @@ Called after the camera position of a map has changed.
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -38,7 +38,7 @@ Event been raised after the action of moving a draggable circle is finished. Pos
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |center Lat|Number| @@ -51,7 +51,7 @@ When the marker's infowindow is clicked, returning marker's id
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| @@ -67,7 +67,7 @@ Triggers this event when user location has changed. Only works when EnableMyloca
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -78,7 +78,7 @@ Called when the user makes a tap gesture on the map
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -89,7 +89,7 @@ Called when the user makes a long-press gesture on the map
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -100,7 +100,7 @@ When a marker is clicked
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| |latitude|Number| @@ -112,7 +112,7 @@ When a marker is been dragged
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| |latitude|Number| @@ -124,7 +124,7 @@ When the user drags a marker and finish the action, returning marker's id and it
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| |latitude|Number| @@ -136,7 +136,7 @@ When a marker starts been dragged
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| |latitude|Number| @@ -148,7 +148,7 @@ This event will be invoked when a user clicks on a point of interest. This can b
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -165,7 +165,7 @@ Create a circle overlay on the map UI with specified latitude and longitude for
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -184,7 +184,7 @@ Adding a list of YailLists for markers. The representation of a maker in the inn
-| Params | []() | +| Param | Type | |--------|------| |markers|List| @@ -194,7 +194,7 @@ Adding a list of markers that are represented as JsonArray. The inner JsonObject
-| Params | []() | +| Param | Type | |--------|------| |json String|Text| @@ -206,7 +206,7 @@ Adding a list of YailList for markers. The inner YailList represents a marker an
-| Params | []() | +| Param | Type | |--------|------| |markers|List| @@ -222,7 +222,7 @@ A Polygon is an enclosed shape that can be used to mark areas on the map.
-| Params | []() | +| Param | Type | |--------|------| |lat Min|Number| |lat Max|Number| @@ -237,7 +237,7 @@ This block will return the unique id of the new added polyline. Create a new pol
-| Params | []() | +| Param | Type | |--------|------| |points|List| |width|Number| @@ -255,7 +255,7 @@ Transforms the camera such that the specified latitude/longitude bounds are cent
-| Params | []() | +| Param | Type | |--------|------| |ne Lat|Number| |ne Lng|Number| @@ -280,7 +280,7 @@ Enables/disables the compass widget on the map's ui. Call this only after event
-| Params | []() | +| Param | Type | |--------|------| |enable|Boolean| @@ -290,7 +290,7 @@ Enable/Disable to listen to map's camera position changed event
-| Params | []() | +| Param | Type | |--------|------| |enabled|Boolean| @@ -300,7 +300,7 @@ Enable/Disable to listen to map's click event
-| Params | []() | +| Param | Type | |--------|------| |enabled|Boolean| @@ -310,7 +310,7 @@ Enable/disable to listen to map's long click event
-| Params | []() | +| Param | Type | |--------|------| |enabled|Boolean| @@ -320,7 +320,7 @@ Enable or disable my location widget control for Google Map. One can call GetMyL
-| Params | []() | +| Param | Type | |--------|------| |enabled|Boolean| @@ -330,7 +330,7 @@ Enables/disables the capability to rotate a map on the ui. Call this only after
-| Params | []() | +| Param | Type | |--------|------| |enable|Boolean| @@ -340,7 +340,7 @@ Enables/disables the capability to scroll a map on the ui. Call this only after
-| Params | []() | +| Param | Type | |--------|------| |enable|Boolean| @@ -350,7 +350,7 @@ Enables/disables the zoom widget on the map's ui. Call this only after the event
-| Params | []() | +| Param | Type | |--------|------| |enable|Boolean| @@ -360,7 +360,7 @@ Enables/disables zoom gesture on the map ui. Call this only after the event "Map
-| Params | []() | +| Param | Type | |--------|------| |enable|Boolean| @@ -396,7 +396,7 @@ Get bounding box.
-| Params | []() | +| Param | Type | |--------|------| |latitude In Degrees|Number| |longitude In Degrees|Number| @@ -434,7 +434,7 @@ Convert a JsonArray of points (lat, lng pairs) to a list.
-| Params | []() | +| Param | Type | |--------|------| |json String|Text| @@ -454,7 +454,7 @@ Move the map's camera to the specified position and zoom level
-| Params | []() | +| Param | Type | |--------|------| |lat|Number| |lng|Number| @@ -468,7 +468,7 @@ Remove a circle for the map. Returns true if successfully removed, false if the
-| Params | []() | +| Param | Type | |--------|------| |circle Id|Number| @@ -478,7 +478,7 @@ Remove a marker from the map
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| @@ -490,7 +490,7 @@ Use this block to remove a polyline from the map. It will return true if it was
-| Params | []() | +| Param | Type | |--------|------| |polyline Id|Number| @@ -500,7 +500,7 @@ Set the layer of Google map. Default layer is "normal", other choices including
-| Params | []() | +| Param | Type | |--------|------| |layer Name|Text| @@ -510,7 +510,7 @@ Set the property of an existing circle. Properties include: "alpha"(number, valu
-| Params | []() | +| Param | Type | |--------|------| |circle Id|Number| |property Name|Text| @@ -522,7 +522,7 @@ Set the property of a marker, note that the marker has to be added first or else
-| Params | []() | +| Param | Type | |--------|------| |marker Id|Number| |property Name|Text| @@ -534,7 +534,7 @@ Update any polyline with the given id. You can change the property values for 'w
-| Params | []() | +| Param | Type | |--------|------| |polyline Id|Number| |property Name|Text| diff --git a/docs/components/google/google-play-games.md b/docs/components/google/google-play-games.md index a9857439d..2731a1509 100644 --- a/docs/components/google/google-play-games.md +++ b/docs/components/google/google-play-games.md @@ -22,7 +22,7 @@ Got player info
-| Params | []() | +| Param | Type | |--------|------| |name|Text| |id|Text| @@ -35,7 +35,7 @@ User signed in.
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| @@ -59,7 +59,7 @@ Increment an achievement.
-| Params | []() | +| Param | Type | |--------|------| |achievement Id|Text| |by|Number| @@ -84,7 +84,7 @@ Shows Leaderboard.
-| Params | []() | +| Param | Type | |--------|------| |leaderboard Id|Text| @@ -94,7 +94,7 @@ Sign in the user. useLastAccount, true: use the last signed in account if possib
-| Params | []() | +| Param | Type | |--------|------| |use Last Account|Boolean| @@ -110,7 +110,7 @@ Submits user score to leaderboard.
-| Params | []() | +| Param | Type | |--------|------| |leaderboard Id|Text| |score|Number| @@ -121,7 +121,7 @@ Unlock an achievement.
-| Params | []() | +| Param | Type | |--------|------| |achievement Id|Text| diff --git a/docs/components/google/google-recaptcha.md b/docs/components/google/google-recaptcha.md index 56ef60c8e..2657dacd9 100644 --- a/docs/components/google/google-recaptcha.md +++ b/docs/components/google/google-recaptcha.md @@ -21,7 +21,7 @@ Event will be invoked when Google reCaptcha prompt returns an error status code.
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -32,7 +32,7 @@ Event will be invoked Google reCaptcha returns a success status code, returning
-| Params | []() | +| Param | Type | |--------|------| |user Response Token|Text| @@ -42,7 +42,7 @@ Event will be triggered after the Validate method gets a response. 'success' wil
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |challenge Timestamp|Text| @@ -63,7 +63,7 @@ Validate the received userResponseToken with your API Secret Key, for increased
-| Params | []() | +| Param | Type | |--------|------| |user Response Token|Text| |secret Key|Text| diff --git a/docs/components/google/play-integrity.md b/docs/components/google/play-integrity.md index 74baca6cd..7e9217992 100644 --- a/docs/components/google/play-integrity.md +++ b/docs/components/google/play-integrity.md @@ -18,7 +18,7 @@ Event triggered when an error occurs during Google Play Integrity API operations
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |message|Text| @@ -29,7 +29,7 @@ Event triggered when a valid integrity token has been successfully obtained from
-| Params | []() | +| Param | Type | |--------|------| |token|Text| |request Hash|Text| @@ -40,7 +40,7 @@ Event triggered when a recoverable error occurs during the integrity provider wa
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |message|Text| @@ -61,6 +61,6 @@ Initiates a request to obtain an integrity token from Google Play Integrity API
-| Params | []() | +| Param | Type | |--------|------| |request Hash|Text| diff --git a/docs/components/google/youtube-player.md b/docs/components/google/youtube-player.md index da49260bf..b688b4ca4 100644 --- a/docs/components/google/youtube-player.md +++ b/docs/components/google/youtube-player.md @@ -20,7 +20,7 @@ Called periodically by the player, the argument is the number of seconds that ha
-| Params | []() | +| Param | Type | |--------|------| |second|Number| @@ -30,7 +30,7 @@ Use this event to detect that there was any error with the player. Return values
-| Params | []() | +| Param | Type | |--------|------| |error|Text| @@ -40,7 +40,7 @@ Event to get notified when the player enters or exits fullscreen. The variable '
-| Params | []() | +| Param | Type | |--------|------| |fullscreen|Boolean| @@ -56,7 +56,7 @@ Called periodically by the player, the argument is the percentage of the video t
-| Params | []() | +| Param | Type | |--------|------| |loaded Fraction|Number| @@ -66,7 +66,7 @@ Use this event to detect that the playback quality was changed. Return values: '
-| Params | []() | +| Param | Type | |--------|------| |quality|Text| @@ -76,7 +76,7 @@ Use this event to detect that the playback rate was changed. Return values: 'UNK
-| Params | []() | +| Param | Type | |--------|------| |rate|Text| @@ -86,7 +86,7 @@ Use this event to detect that the state changes. Return values: 'UNKNOWN', 'UNST
-| Params | []() | +| Param | Type | |--------|------| |state|Text| @@ -116,7 +116,7 @@ This block will return the thumbnail image path from a video id. Use only as exa
-| Params | []() | +| Param | Type | |--------|------| |video Id|Text| @@ -126,7 +126,7 @@ Use this block together with the 'Youtube Player' Initialized event. Loads and a
-| Params | []() | +| Param | Type | |--------|------| |video Id|Text| @@ -136,7 +136,7 @@ Loads the specified video's thumbnail and prepares the player to play the video.
-| Params | []() | +| Param | Type | |--------|------| |video Id|Text| @@ -158,7 +158,7 @@ Set a position where the youtube video should start playing in seconds.
-| Params | []() | +| Param | Type | |--------|------| |position|Number| diff --git a/docs/components/layout/general/grid-view.md b/docs/components/layout/general/grid-view.md index 82d27faa4..b13b725c6 100644 --- a/docs/components/layout/general/grid-view.md +++ b/docs/components/layout/general/grid-view.md @@ -19,7 +19,7 @@ Triggers after an item from this component has been selected
-| Params | []() | +| Param | Type | |--------|------| |item|Text| diff --git a/docs/components/layout/general/horizontal-arrangement.md b/docs/components/layout/general/horizontal-arrangement.md index dfe53da95..5eb1dc2ea 100644 --- a/docs/components/layout/general/horizontal-arrangement.md +++ b/docs/components/layout/general/horizontal-arrangement.md @@ -33,11 +33,11 @@ A number that encodes how contents of the arrangement are aligned horizontally.
-| Options | []() | +| Option | Value | |--------|------| -|Left|Option for Left| -|Center|Option for Center| -|Right|Option for Right| +|Left|1| +|Center|3| +|Right|2| ### Align Vertical @@ -48,11 +48,11 @@ A number that encodes how the contents of the arrangement are aligned vertically
-| Options | []() | +| Option | Value | |--------|------| -|Top|Option for Top| -|Center|Option for Center| -|Bottom|Option for Bottom| +|Top|1| +|Center|2| +|Bottom|3| ### Background Color diff --git a/docs/components/layout/general/horizontal-scroll-arrangement.md b/docs/components/layout/general/horizontal-scroll-arrangement.md index 1e04105b6..acfc92051 100644 --- a/docs/components/layout/general/horizontal-scroll-arrangement.md +++ b/docs/components/layout/general/horizontal-scroll-arrangement.md @@ -35,11 +35,11 @@ A number that encodes how contents of the arrangement are aligned horizontally.
-| Options | []() | +| Option | Value | |--------|------| -|Left|Option for Left| -|Center|Option for Center| -|Right|Option for Right| +|Left|1| +|Center|3| +|Right|2| ### Align Vertical @@ -50,11 +50,11 @@ A number that encodes how the contents of the arrangement are aligned vertically
-| Options | []() | +| Option | Value | |--------|------| -|Top|Option for Top| -|Center|Option for Center| -|Bottom|Option for Bottom| +|Top|1| +|Center|2| +|Bottom|3| ### Background Color diff --git a/docs/components/layout/general/vertical-arrangement.md b/docs/components/layout/general/vertical-arrangement.md index 663b3268e..36c9bf0a9 100644 --- a/docs/components/layout/general/vertical-arrangement.md +++ b/docs/components/layout/general/vertical-arrangement.md @@ -33,11 +33,11 @@ A number that encodes how contents of the arrangement are aligned horizontally.
-| Options | []() | +| Option | Value | |--------|------| -|Left|Option for Left| -|Center|Option for Center| -|Right|Option for Right| +|Left|1| +|Center|3| +|Right|2| ### Align Vertical @@ -48,11 +48,11 @@ A number that encodes how the contents of the arrangement are aligned vertically
-| Options | []() | +| Option | Value | |--------|------| -|Top|Option for Top| -|Center|Option for Center| -|Bottom|Option for Bottom| +|Top|1| +|Center|2| +|Bottom|3| ### Background Color diff --git a/docs/components/layout/general/vertical-scroll-arrangement.md b/docs/components/layout/general/vertical-scroll-arrangement.md index 8dd40541a..29d56d915 100644 --- a/docs/components/layout/general/vertical-scroll-arrangement.md +++ b/docs/components/layout/general/vertical-scroll-arrangement.md @@ -35,11 +35,11 @@ A number that encodes how contents of the arrangement are aligned horizontally.
-| Options | []() | +| Option | Value | |--------|------| -|Left|Option for Left| -|Center|Option for Center| -|Right|Option for Right| +|Left|1| +|Center|3| +|Right|2| ### Align Vertical @@ -50,11 +50,11 @@ A number that encodes how the contents of the arrangement are aligned vertically
-| Options | []() | +| Option | Value | |--------|------| -|Top|Option for Top| -|Center|Option for Center| -|Bottom|Option for Bottom| +|Top|1| +|Center|2| +|Bottom|3| ### Background Color diff --git a/docs/components/layout/lists/list-view-image-and-text.md b/docs/components/layout/lists/list-view-image-and-text.md index 1583375a6..245c957ca 100644 --- a/docs/components/layout/lists/list-view-image-and-text.md +++ b/docs/components/layout/lists/list-view-image-and-text.md @@ -19,7 +19,7 @@ Triggers when the user clicks on a item in the list
-| Params | []() | +| Param | Type | |--------|------| |position|Number| |title|Text| @@ -32,7 +32,7 @@ Triggers when the user long clicks on a item in the list
-| Params | []() | +| Param | Type | |--------|------| |position|Number| |title|Text| @@ -47,7 +47,7 @@ Add a item to the list
-| Params | []() | +| Param | Type | |--------|------| |image|Text| |title|Text| @@ -59,7 +59,7 @@ Add a item to the list
-| Params | []() | +| Param | Type | |--------|------| |list|List| @@ -75,7 +75,7 @@ Remove a item from the list
-| Params | []() | +| Param | Type | |--------|------| |position|Number| @@ -85,7 +85,7 @@ Update a item of the list
-| Params | []() | +| Param | Type | |--------|------| |position|Number| |image|Text| diff --git a/docs/components/layout/navigation/bottom-navigation.md b/docs/components/layout/navigation/bottom-navigation.md index c016ccf53..0427fd853 100644 --- a/docs/components/layout/navigation/bottom-navigation.md +++ b/docs/components/layout/navigation/bottom-navigation.md @@ -16,7 +16,7 @@ Event triggers when an item was selected.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -29,7 +29,7 @@ Add an item to the bottom menu
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -47,7 +47,7 @@ Remove an item from the bottom menu
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -57,7 +57,7 @@ Select an item from the bottom menu
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -67,7 +67,7 @@ Update an item of the bottom menu
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| diff --git a/docs/components/layout/navigation/side-menu-layout.md b/docs/components/layout/navigation/side-menu-layout.md index c39f1293a..68ae7abd2 100644 --- a/docs/components/layout/navigation/side-menu-layout.md +++ b/docs/components/layout/navigation/side-menu-layout.md @@ -19,7 +19,7 @@ Triggers when the user clicks on an item of the Navigation Menu
-| Params | []() | +| Param | Type | |--------|------| |title|Text| @@ -31,7 +31,7 @@ Add an item to the Navigation Menu
-| Params | []() | +| Param | Type | |--------|------| |title|Text| |image|Text| @@ -45,7 +45,7 @@ Remove an item from the Navigation Menu
-| Params | []() | +| Param | Type | |--------|------| |title|Text| @@ -55,7 +55,7 @@ Update an item of the Navigation Menu
-| Params | []() | +| Param | Type | |--------|------| |title|Text| |new Title|Text| diff --git a/docs/components/layout/navigation/tab-layout.md b/docs/components/layout/navigation/tab-layout.md index 25488e46e..0a0e88194 100644 --- a/docs/components/layout/navigation/tab-layout.md +++ b/docs/components/layout/navigation/tab-layout.md @@ -16,7 +16,7 @@ The event returns the name or the position of the selected tab.
-| Params | []() | +| Param | Type | |--------|------| |tab|Text| |position|Number| @@ -29,7 +29,7 @@ Add a new tab to the tab layout. If you don't want a icon then let it empty.
-| Params | []() | +| Param | Type | |--------|------| |name|Text| |icon|Text| @@ -40,7 +40,7 @@ Add a new tab to the tab layout at the given position. If you don't want a icon
-| Params | []() | +| Param | Type | |--------|------| |name|Text| |icon|Text| @@ -66,7 +66,7 @@ Removes a before added tab. If you want to delete the first tab then use as posi
-| Params | []() | +| Param | Type | |--------|------| |position|Number| diff --git a/docs/components/layout/navigation/view-pager.md b/docs/components/layout/navigation/view-pager.md index 9209a5bad..08755fbb1 100644 --- a/docs/components/layout/navigation/view-pager.md +++ b/docs/components/layout/navigation/view-pager.md @@ -16,7 +16,7 @@ Event to detect that a page was selected.
-| Params | []() | +| Param | Type | |--------|------| |position|Number| @@ -28,7 +28,7 @@ Add a component to the view pager. The first added component will be the first v
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |tab Name|Text| @@ -45,7 +45,7 @@ Removes a before added view from the view pager. If you want to delete the first
-| Params | []() | +| Param | Type | |--------|------| |position|Number| diff --git a/docs/components/layout/views/bottom-sheet.md b/docs/components/layout/views/bottom-sheet.md index 2cb86666d..f94618098 100644 --- a/docs/components/layout/views/bottom-sheet.md +++ b/docs/components/layout/views/bottom-sheet.md @@ -38,7 +38,7 @@ Register any component as example a 'button', that will be later your bottom she
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -48,7 +48,7 @@ Register any layout as example a 'horizontal arrangement', that will be later yo
-| Params | []() | +| Param | Type | |--------|------| |layout|Component| diff --git a/docs/components/layout/views/chat-view.md b/docs/components/layout/views/chat-view.md index d1bf7694b..f20d6facc 100644 --- a/docs/components/layout/views/chat-view.md +++ b/docs/components/layout/views/chat-view.md @@ -20,7 +20,7 @@ Click listener event.
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -40,7 +40,7 @@ Double tap click listener event.
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -60,7 +60,7 @@ Long click listener event.
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -80,7 +80,7 @@ Swipe listener event. The direction value returns '1' for right-to-left swipes,
-| Params | []() | +| Param | Type | |--------|------| |direction|Number| |user Image|Text| @@ -101,7 +101,7 @@ Click listener event for the user image.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |user Image|Text| @@ -114,7 +114,7 @@ Add a new simple component message into the chat view. If you do not want a user
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -130,7 +130,7 @@ Add a new simple date timestamp into the chat view. You NEED to write a date, el
-| Params | []() | +| Param | Type | |--------|------| |date|Text| |text Color|Number| @@ -143,7 +143,7 @@ Add a new simple file message into the chat view. If you do not want a user imag
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -160,7 +160,7 @@ Add a new simple image message into the chat view. If you do not want a user ima
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -176,7 +176,7 @@ Add a new simple message into the chat view. If you do not want a user image or
-| Params | []() | +| Param | Type | |--------|------| |user Image|Text| |title|Text| @@ -221,7 +221,7 @@ Remove a message or timestamp from the chat view.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -231,7 +231,7 @@ Scroll to a specific message in the chat view with the given id.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -241,7 +241,7 @@ Update the background color of a chat view message.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |background Color|Number| @@ -252,7 +252,7 @@ Update the message content of a chat view message.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |text|Text| @@ -264,7 +264,7 @@ Update the timestamp content of a chat view message.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |text|Text| @@ -276,7 +276,7 @@ Update the title content of a chat view message.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |text|Text| @@ -288,7 +288,7 @@ Update the user image of a chat view message. The image can only be updated if t
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |user Image|Text| diff --git a/docs/components/layout/views/gallery-viewer.md b/docs/components/layout/views/gallery-viewer.md index d39cea25c..6bb60a74a 100644 --- a/docs/components/layout/views/gallery-viewer.md +++ b/docs/components/layout/views/gallery-viewer.md @@ -16,7 +16,7 @@ Triggered after an image is selected. It will also report selected image name
-| Params | []() | +| Param | Type | |--------|------| |image Name|Text| diff --git a/docs/components/layout/views/surface-view.md b/docs/components/layout/views/surface-view.md index 564283163..3f85c448c 100644 --- a/docs/components/layout/views/surface-view.md +++ b/docs/components/layout/views/surface-view.md @@ -28,7 +28,7 @@ Event to detect that there are faces in the front of the camera.
-| Params | []() | +| Param | Type | |--------|------| |numbers|Text| @@ -38,7 +38,7 @@ Event to get the response from the camera preview as image file. The picture is
-| Params | []() | +| Param | Type | |--------|------| |image|Text| @@ -54,7 +54,7 @@ Event to detect that the user has taken a picture from the preview.
-| Params | []() | +| Param | Type | |--------|------| |image|Text| diff --git a/docs/components/layout/views/view-flipper.md b/docs/components/layout/views/view-flipper.md index 4e67de855..f2513d93c 100644 --- a/docs/components/layout/views/view-flipper.md +++ b/docs/components/layout/views/view-flipper.md @@ -16,7 +16,7 @@ Add a component to the view flipper. The first added component will be the first
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -26,7 +26,7 @@ Use this function if you try to create a image view flipper. Please use a 'make
-| Params | []() | +| Param | Type | |--------|------| |images|List| diff --git a/docs/components/layout/views/web-viewer.md b/docs/components/layout/views/web-viewer.md index 5f6e410ca..b89fa07fe 100644 --- a/docs/components/layout/views/web-viewer.md +++ b/docs/components/layout/views/web-viewer.md @@ -32,7 +32,7 @@ Get the result of the evaluated JS
-| Params | []() | +| Param | Type | |--------|------| |result|Text| @@ -42,7 +42,7 @@ This event return true when the cookies have been successfully removed. If the c
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| @@ -52,7 +52,7 @@ Get webpage console output
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |line Number|Number| @@ -64,7 +64,7 @@ Event for listening download links.
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |content Disposition|Text| @@ -77,7 +77,7 @@ Triggers when page finished loading
-| Params | []() | +| Param | Type | |--------|------| |url|Text| @@ -87,7 +87,7 @@ Event to detect that the loading progress has changed.
-| Params | []() | +| Param | Type | |--------|------| |progress|Number| @@ -97,7 +97,7 @@ When the JavaScript calls AppInventor.setWebViewString this event is run.
-| Params | []() | +| Param | Type | |--------|------| |value|Text| @@ -119,7 +119,7 @@ Returns true if the WebViewer can go back or forward the number of steps in the
-| Params | []() | +| Param | Type | |--------|------| |steps|Number| @@ -155,7 +155,7 @@ Evaluate JS in the context of the current page
-| Params | []() | +| Param | Type | |--------|------| |script|Text| @@ -171,7 +171,7 @@ Go forward or backward a number of steps away from the current page. Steps is ne
-| Params | []() | +| Param | Type | |--------|------| |steps|Number| @@ -193,7 +193,7 @@ Load the page at the given URL.
-| Params | []() | +| Param | Type | |--------|------| |url|Text| @@ -203,7 +203,7 @@ Load HTML content using Base64-encoded data URI scheme
-| Params | []() | +| Param | Type | |--------|------| |html|Text| diff --git a/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md b/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md index ae56cb722..691ad546e 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md +++ b/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md @@ -30,7 +30,7 @@ Called when the detected color has changed. The ColorChanged event will occur if
-| Params | []() | +| Param | Type | |--------|------| |color Code|Number| |color Name|Text| @@ -147,11 +147,11 @@ Specifies the mode of the sensor.
-| Options | []() | +| Option | Value | |--------|------| -|Reflected|Option for Reflected| -|Ambient|Option for Ambient| -|Color|Option for Color| +|Reflected|reflected| +|Ambient|ambient| +|Color|color| ### Sensor Port diff --git a/docs/components/lego-mindstorms/ev3/ev3-commands.md b/docs/components/lego-mindstorms/ev3/ev3-commands.md index fdb936560..53d2107c9 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-commands.md +++ b/docs/components/lego-mindstorms/ev3/ev3-commands.md @@ -74,7 +74,7 @@ Keep the EV3 brick from shutdown for a period of time.
-| Params | []() | +| Param | Type | |--------|------| |minutes|Number| diff --git a/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md b/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md index ee4bd0682..7601341b6 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md +++ b/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md @@ -18,7 +18,7 @@ Called then the sensor value changed.
-| Params | []() | +| Param | Type | |--------|------| |sensor Value|Number| @@ -68,10 +68,10 @@ Specifies the mode of the sensor.
-| Options | []() | +| Option | Value | |--------|------| -|Angle|Option for Angle| -|Rate|Option for Rate| +|Angle|angle| +|Rate|rate| ### Sensor Port diff --git a/docs/components/lego-mindstorms/ev3/ev3-motors.md b/docs/components/lego-mindstorms/ev3/ev3-motors.md index c1b9621a7..ea8c004ee 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-motors.md +++ b/docs/components/lego-mindstorms/ev3/ev3-motors.md @@ -18,7 +18,7 @@ Called when the tacho count has changed.
-| Params | []() | +| Param | Type | |--------|------| |tacho Count|Number| @@ -44,7 +44,7 @@ Rotate the motors in a distance.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |distance|Number| @@ -56,7 +56,7 @@ Rotate the motors in a period of time.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |milliseconds|Number| @@ -68,7 +68,7 @@ Rotate the motors in a number of tacho counts.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |tacho Counts|Number| @@ -80,7 +80,7 @@ Start to rotate the motors.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| @@ -90,7 +90,7 @@ Rotate the motors at the same speed for a distance in cm.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |distance|Number| @@ -103,7 +103,7 @@ Rotate the motors at the same speed in a period of time.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |milliseconds|Number| @@ -116,7 +116,7 @@ Rotate the motors at the same speed in a number of tacho counts.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |tacho Counts|Number| @@ -129,7 +129,7 @@ Start to rotate the motors at the same speed.
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |turn Ratio|Number| @@ -140,7 +140,7 @@ Stop the motors of the robot.
-| Params | []() | +| Param | Type | |--------|------| |use Brake|Boolean| diff --git a/docs/components/lego-mindstorms/ev3/ev3-sound.md b/docs/components/lego-mindstorms/ev3/ev3-sound.md index 415fb0538..da753e85c 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-sound.md +++ b/docs/components/lego-mindstorms/ev3/ev3-sound.md @@ -18,7 +18,7 @@ Make the robot play a tone.
-| Params | []() | +| Param | Type | |--------|------| |volume|Number| |frequency|Number| diff --git a/docs/components/lego-mindstorms/ev3/ev3-ui.md b/docs/components/lego-mindstorms/ev3/ev3-ui.md index 4fe924f27..777ca44fb 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-ui.md +++ b/docs/components/lego-mindstorms/ev3/ev3-ui.md @@ -18,7 +18,7 @@ Draw a circle on the screen.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| |x|Number| @@ -32,7 +32,7 @@ Draw a built-in icon on screen.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| |x|Number| @@ -46,7 +46,7 @@ Draw a line on the screen.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| |x1|Number| @@ -60,7 +60,7 @@ Draw a point on the screen.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| |x|Number| @@ -72,7 +72,7 @@ Draw a rectangle on the screen.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| |x|Number| @@ -87,7 +87,7 @@ Fill the screen with a color.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| diff --git a/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md b/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md index 3f2d74d90..89e425c93 100644 --- a/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md +++ b/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md @@ -118,10 +118,10 @@ Specifies the unit of distance.
-| Options | []() | +| Option | Value | |--------|------| -|Centimeters|Option for Centimeters| -|Inches|Option for Inches| +|Centimeters|cm| +|Inches|inch| ### Within Range Event Enabled diff --git a/docs/components/lego-mindstorms/nxt/nxt-color-sensor.md b/docs/components/lego-mindstorms/nxt/nxt-color-sensor.md index e5711b0c9..0a579fef5 100644 --- a/docs/components/lego-mindstorms/nxt/nxt-color-sensor.md +++ b/docs/components/lego-mindstorms/nxt/nxt-color-sensor.md @@ -30,7 +30,7 @@ Detected color has changed. The ColorChanged event will not occur if the DetectC
-| Params | []() | +| Param | Type | |--------|------| |color|Number| diff --git a/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md b/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md index a146749f7..e0f02525d 100644 --- a/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md +++ b/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md @@ -18,7 +18,7 @@ Delete a file on the robot.
-| Params | []() | +| Param | Type | |--------|------| |file Name|Text| @@ -28,7 +28,7 @@ Download a file to the robot.
-| Params | []() | +| Param | Type | |--------|------| |source|Text| |destination|Text| @@ -73,16 +73,16 @@ Reads the values of an input sensor on the robot. Assumes sensor type has been c
-| Params | []() | +| Param | Type | |--------|------| |sensor Port Letter|Text
NxtSensorPort| -| sensor Port Letter Options | []() | +| sensor Port Letter Option | Value | |--------|------| -|Port1|Option for Port1| -|Port2|Option for Port2| -|Port3|Option for Port3| -|Port4|Option for Port4| +|Port1|1| +|Port2|2| +|Port3|3| +|Port4|4| ### Get Output State @@ -92,15 +92,15 @@ Reads the output state of a motor on the robot.
-| Params | []() | +| Param | Type | |--------|------| |motor Port Letter|Text
NxtMotorPort| -| motor Port Letter Options | []() | +| motor Port Letter Option | Value | |--------|------| -|PortA|Option for PortA| -|PortB|Option for PortB| -|PortC|Option for PortC| +|PortA|A| +|PortB|B| +|PortC|C| ### Keep Alive @@ -118,7 +118,7 @@ Returns a list containing the names of matching files found on the robot.
-| Params | []() | +| Param | Type | |--------|------| |wildcard|Text| @@ -130,16 +130,16 @@ Returns the count of available bytes to read.
-| Params | []() | +| Param | Type | |--------|------| |sensor Port Letter|Text
NxtSensorPort| -| sensor Port Letter Options | []() | +| sensor Port Letter Option | Value | |--------|------| -|Port1|Option for Port1| -|Port2|Option for Port2| -|Port3|Option for Port3| -|Port4|Option for Port4| +|Port1|1| +|Port2|2| +|Port3|3| +|Port4|4| ### Ls Read @@ -149,16 +149,16 @@ Reads unsigned low speed data from an input sensor on the robot. Assumes sensor
-| Params | []() | +| Param | Type | |--------|------| |sensor Port Letter|Text
NxtSensorPort| -| sensor Port Letter Options | []() | +| sensor Port Letter Option | Value | |--------|------| -|Port1|Option for Port1| -|Port2|Option for Port2| -|Port3|Option for Port3| -|Port4|Option for Port4| +|Port1|1| +|Port2|2| +|Port3|3| +|Port4|4| ### Ls Write @@ -166,18 +166,18 @@ Writes low speed data to an input sensor on the robot. Assumes sensor type has b
-| Params | []() | +| Param | Type | |--------|------| |sensor Port Letter|Text
NxtSensorPort| |list|List| |rx Data Length|Number| -| sensor Port Letter Options | []() | +| sensor Port Letter Option | Value | |--------|------| -|Port1|Option for Port1| -|Port2|Option for Port2| -|Port3|Option for Port3| -|Port4|Option for Port4| +|Port1|1| +|Port2|2| +|Port3|3| +|Port4|4| ### Message Read @@ -187,22 +187,22 @@ Read a message from a mailbox (1-10) on the robot.
-| Params | []() | +| Param | Type | |--------|------| |mailbox|Number
NxtMailbox| -| mailbox Options | []() | +| mailbox Option | Value | |--------|------| -|Box1|Option for Box1| -|Box2|Option for Box2| -|Box3|Option for Box3| -|Box4|Option for Box4| -|Box5|Option for Box5| -|Box6|Option for Box6| -|Box7|Option for Box7| -|Box8|Option for Box8| -|Box9|Option for Box9| -|Box10|Option for Box10| +|Box1|1| +|Box2|2| +|Box3|3| +|Box4|4| +|Box5|5| +|Box6|6| +|Box7|7| +|Box8|8| +|Box9|9| +|Box10|10| ### Message Write @@ -210,23 +210,23 @@ Write a message to a mailbox (1-10) on the robot.
-| Params | []() | +| Param | Type | |--------|------| |mailbox|Number
NxtMailbox| |message|Text| -| mailbox Options | []() | +| mailbox Option | Value | |--------|------| -|Box1|Option for Box1| -|Box2|Option for Box2| -|Box3|Option for Box3| -|Box4|Option for Box4| -|Box5|Option for Box5| -|Box6|Option for Box6| -|Box7|Option for Box7| -|Box8|Option for Box8| -|Box9|Option for Box9| -|Box10|Option for Box10| +|Box1|1| +|Box2|2| +|Box3|3| +|Box4|4| +|Box5|5| +|Box6|6| +|Box7|7| +|Box8|8| +|Box9|9| +|Box10|10| ### Play Sound File @@ -234,7 +234,7 @@ Play a sound file on the robot.
-| Params | []() | +| Param | Type | |--------|------| |file Name|Text| @@ -244,7 +244,7 @@ Make the robot play a tone.
-| Params | []() | +| Param | Type | |--------|------| |frequency Hz|Number| |duration Ms|Number| @@ -255,16 +255,16 @@ Reset the scaled value of an input sensor on the robot.
-| Params | []() | +| Param | Type | |--------|------| |sensor Port Letter|Text
NxtSensorPort| -| sensor Port Letter Options | []() | +| sensor Port Letter Option | Value | |--------|------| -|Port1|Option for Port1| -|Port2|Option for Port2| -|Port3|Option for Port3| -|Port4|Option for Port4| +|Port1|1| +|Port2|2| +|Port3|3| +|Port4|4| ### Reset Motor Position @@ -272,16 +272,16 @@ Reset motor position.
-| Params | []() | +| Param | Type | |--------|------| |motor Port Letter|Text
NxtMotorPort| |relative|Boolean| -| motor Port Letter Options | []() | +| motor Port Letter Option | Value | |--------|------| -|PortA|Option for PortA| -|PortB|Option for PortB| -|PortC|Option for PortC| +|PortA|A| +|PortB|B| +|PortC|C| ### Set Brick Name @@ -289,7 +289,7 @@ Set the brick name of the robot.
-| Params | []() | +| Param | Type | |--------|------| |name|Text| @@ -299,48 +299,48 @@ Configure an input sensor on the robot.
-| Params | []() | +| Param | Type | |--------|------| |sensor Port Letter|Text
NxtSensorPort| |sensor Type|Number
NxtSensorType| |sensor Mode|Number
NxtSensorMode| -| sensor Port Letter Options | []() | -|--------|------| -|Port1|Option for Port1| -|Port2|Option for Port2| -|Port3|Option for Port3| -|Port4|Option for Port4| - -| sensor Type Options | []() | -|--------|------| -|NoSensor|Option for NoSensor| -|Touch|Option for Touch| -|LightOn|Option for LightOn| -|LightOff|Option for LightOff| -|SoundDB|Option for SoundDB| -|SoundDBA|Option for SoundDBA| -|ColorFull|Option for ColorFull| -|ColorRed|Option for ColorRed| -|ColorGreen|Option for ColorGreen| -|ColorBlue|Option for ColorBlue| -|ColorNone|Option for ColorNone| -|Digital12C|Option for Digital12C| -|Digital12C9V|Option for Digital12C9V| -|RcxTemperature|Option for RcxTemperature| -|RcxLight|Option for RcxLight| -|RcxAngle|Option for RcxAngle| - -| sensor Mode Options | []() | -|--------|------| -|Raw|Option for Raw| -|Boolean|Option for Boolean| -|TransitionCount|Option for TransitionCount| -|PeriodCount|Option for PeriodCount| -|Percentage|Option for Percentage| -|RcxCelsius|Option for RcxCelsius| -|RcxFahrenheit|Option for RcxFahrenheit| -|RcxAngleSteps|Option for RcxAngleSteps| +| sensor Port Letter Option | Value | +|--------|------| +|Port1|1| +|Port2|2| +|Port3|3| +|Port4|4| + +| sensor Type Option | Value | +|--------|------| +|NoSensor|0| +|Touch|1| +|LightOn|5| +|LightOff|6| +|SoundDB|7| +|SoundDBA|8| +|ColorFull|13| +|ColorRed|14| +|ColorGreen|15| +|ColorBlue|16| +|ColorNone|17| +|Digital12C|10| +|Digital12C9V|11| +|RcxTemperature|2| +|RcxLight|3| +|RcxAngle|4| + +| sensor Mode Option | Value | +|--------|------| +|Raw|0| +|Boolean|32| +|TransitionCount|96| +|PeriodCount|96| +|Percentage|128| +|RcxCelsius|160| +|RcxFahrenheit|192| +|RcxAngleSteps|224| ### Set Output State @@ -348,7 +348,7 @@ Sets the output state of a motor on the robot.
-| Params | []() | +| Param | Type | |--------|------| |motor Port Letter|Text
NxtMotorPort| |power|Number| @@ -358,31 +358,31 @@ Sets the output state of a motor on the robot. |run State|Number
NxtRunState| |tacho Limit|Number| -| motor Port Letter Options | []() | +| motor Port Letter Option | Value | |--------|------| -|PortA|Option for PortA| -|PortB|Option for PortB| -|PortC|Option for PortC| +|PortA|A| +|PortB|B| +|PortC|C| -| mode Options | []() | +| mode Option | Value | |--------|------| -|On|Option for On| -|Brake|Option for Brake| -|Regulated|Option for Regulated| -|Coast|Option for Coast| +|On|1| +|Brake|2| +|Regulated|4| +|Coast|0| -| regulation Mode Options | []() | +| regulation Mode Option | Value | |--------|------| -|Disabled|Option for Disabled| -|Speed|Option for Speed| -|Synchronization|Option for Synchronization| +|Disabled|0| +|Speed|1| +|Synchronization|2| -| run State Options | []() | +| run State Option | Value | |--------|------| -|Disabled|Option for Disabled| -|Running|Option for Running| -|RampUp|Option for RampUp| -|RampDown|Option for RampDown| +|Disabled|0| +|Running|32| +|RampUp|16| +|RampDown|64| ### Start Program @@ -390,7 +390,7 @@ Start execution of a previously downloaded program on the robot.
-| Params | []() | +| Param | Type | |--------|------| |program Name|Text| diff --git a/docs/components/lego-mindstorms/nxt/nxt-drive.md b/docs/components/lego-mindstorms/nxt/nxt-drive.md index 696934b72..3e14f3a60 100644 --- a/docs/components/lego-mindstorms/nxt/nxt-drive.md +++ b/docs/components/lego-mindstorms/nxt/nxt-drive.md @@ -18,7 +18,7 @@ Move the robot backward the given distance, with the specified percentage of max
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |distance|Number| @@ -29,7 +29,7 @@ Move the robot backward indefinitely, with the specified percentage of maximum p
-| Params | []() | +| Param | Type | |--------|------| |power|Number| @@ -39,7 +39,7 @@ Move the robot forward the given distance, with the specified percentage of maxi
-| Params | []() | +| Param | Type | |--------|------| |power|Number| |distance|Number| @@ -50,7 +50,7 @@ Move the robot forward indefinitely, with the specified percentage of maximum po
-| Params | []() | +| Param | Type | |--------|------| |power|Number| @@ -66,7 +66,7 @@ Turn the robot clockwise indefinitely, with the specified percentage of maximum
-| Params | []() | +| Param | Type | |--------|------| |power|Number| @@ -76,7 +76,7 @@ Turn the robot counterclockwise indefinitely, with the specified percentage of m
-| Params | []() | +| Param | Type | |--------|------| |power|Number| diff --git a/docs/components/maps/circle.md b/docs/components/maps/circle.md index 8e7dd08d8..bcae0d4aa 100644 --- a/docs/components/maps/circle.md +++ b/docs/components/maps/circle.md @@ -50,7 +50,7 @@ Compute the distance, in meters, between two map features.
-| Params | []() | +| Param | Type | |--------|------| |map Feature|Component| |centroids|Boolean| @@ -63,7 +63,7 @@ Compute the distance, in meters, between a map feature and a latitude, longitude
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -81,7 +81,7 @@ Set the center of the Circle.
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| diff --git a/docs/components/maps/feature-collection.md b/docs/components/maps/feature-collection.md index de0198dde..85a6b8a3a 100644 --- a/docs/components/maps/feature-collection.md +++ b/docs/components/maps/feature-collection.md @@ -16,7 +16,7 @@ The user clicked on a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -26,7 +26,7 @@ The user dragged a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -36,7 +36,7 @@ The user long-pressed on a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -46,7 +46,7 @@ The user started dragging a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -56,7 +56,7 @@ The user stopped dragging a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -66,7 +66,7 @@ A GeoJSON document was successfully read from url. The features specified in the
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |features|List| @@ -77,7 +77,7 @@ An error was encountered while processing a GeoJSON document at the given url. T
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |response Code|Number| @@ -93,7 +93,7 @@ Convert a feature description into an App Inventor map feature. Currently the on
-| Params | []() | +| Param | Type | |--------|------| |description|List| @@ -103,7 +103,7 @@ Load a feature collection in [GeoJSON](https://en.wikipedia.org/wiki/GeoJSON) fo
-| Params | []() | +| Param | Type | |--------|------| |url|Text| diff --git a/docs/components/maps/line-string.md b/docs/components/maps/line-string.md index 93f597606..8dc24545c 100644 --- a/docs/components/maps/line-string.md +++ b/docs/components/maps/line-string.md @@ -50,7 +50,7 @@ Compute the distance, in meters, between two map features.
-| Params | []() | +| Param | Type | |--------|------| |map Feature|Component| |centroids|Boolean| @@ -63,7 +63,7 @@ Compute the distance, in meters, between a map feature and a latitude, longitude
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| diff --git a/docs/components/maps/map.md b/docs/components/maps/map.md index 9d930ed87..b645c6b92 100644 --- a/docs/components/maps/map.md +++ b/docs/components/maps/map.md @@ -28,7 +28,7 @@ The user double-tapped at a point on the map. This event will be followed by a Z
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -39,7 +39,7 @@ The user clicked on a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -49,7 +49,7 @@ The user dragged a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -59,7 +59,7 @@ The user long-pressed on a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -69,7 +69,7 @@ The user started dragging a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -79,7 +79,7 @@ The user stopped dragging a map feature.
-| Params | []() | +| Param | Type | |--------|------| |feature|Component| @@ -89,7 +89,7 @@ A GeoJSON document was successfully read from url. The features specified in the
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |features|List| @@ -100,7 +100,7 @@ An invalid coordinate was supplied during a maps operation. The message paramete
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -110,7 +110,7 @@ An error was encountered while processing a GeoJSON document at the given url. T
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |response Code|Number| @@ -122,7 +122,7 @@ The user long-pressed at a point on the map.
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -139,7 +139,7 @@ The user tapped at a point on the map.
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -160,7 +160,7 @@ Create a new marker with default properties at the specified latitude and longit
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -173,7 +173,7 @@ Convert a feature description into an App Inventor map feature. Currently the on
-| Params | []() | +| Param | Type | |--------|------| |description|List| @@ -183,7 +183,7 @@ Load a feature collection in [GeoJSON](https://en.wikipedia.org/wiki/GeoJSON) fo
-| Params | []() | +| Param | Type | |--------|------| |url|Text| @@ -193,7 +193,7 @@ Pan the map center to the given latitude and longitude and adjust the zoom level
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -205,7 +205,7 @@ Save the contents of the Map to the specified path.
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -320,11 +320,11 @@ Set the type of map tile used for the base tile layer. Valid values are:
-| Options | []() | +| Option | Value | |--------|------| -|Road|Option for Road| -|Aerial|Option for Aerial| -|Terrain|Option for Terrain| +|Road|1| +|Aerial|2| +|Terrain|3| ### Rotation @@ -344,10 +344,10 @@ Property for ScaleUnits
-| Options | []() | +| Option | Value | |--------|------| -|Metric|Option for Metric| -|Imperial|Option for Imperial| +|Metric|1| +|Imperial|2| ### Show Compass diff --git a/docs/components/maps/marker.md b/docs/components/maps/marker.md index b61eed1ab..0e6cd04ee 100644 --- a/docs/components/maps/marker.md +++ b/docs/components/maps/marker.md @@ -50,7 +50,7 @@ Returns the bearing from the Marker to the given map feature, in degrees from du
-| Params | []() | +| Param | Type | |--------|------| |map Feature|Component| |centroids|Boolean| @@ -63,7 +63,7 @@ Returns the bearing from the Marker to the given latitude and longitude, in degr
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -76,7 +76,7 @@ Compute the distance, in meters, between two map features.
-| Params | []() | +| Param | Type | |--------|------| |map Feature|Component| |centroids|Boolean| @@ -89,7 +89,7 @@ Compute the distance, in meters, between a map feature and a latitude, longitude
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -106,7 +106,7 @@ Set the location of the marker.
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -128,11 +128,11 @@ The horizontal alignment property controls where the Marker's anchor is located
-| Options | []() | +| Option | Value | |--------|------| -|Left|Option for Left| -|Center|Option for Center| -|Right|Option for Right| +|Left|1| +|Center|3| +|Right|2| ### Anchor Vertical @@ -143,11 +143,11 @@ The vertical alignment property controls where the Marker's anchor is located re
-| Options | []() | +| Option | Value | |--------|------| -|Top|Option for Top| -|Center|Option for Center| -|Bottom|Option for Bottom| +|Top|1| +|Center|2| +|Bottom|3| ### Description diff --git a/docs/components/maps/navigation.md b/docs/components/maps/navigation.md index ad466f0e0..8e5f88e8a 100644 --- a/docs/components/maps/navigation.md +++ b/docs/components/maps/navigation.md @@ -21,7 +21,7 @@ Event triggered when the Openrouteservice returns the directions.
-| Params | []() | +| Param | Type | |--------|------| |directions|List| |points|List| @@ -124,9 +124,9 @@ The transportation method used for determining the route.
-| Options | []() | +| Option | Value | |--------|------| -|Foot|Option for Foot| -|Car|Option for Car| -|Bicycle|Option for Bicycle| -|Wheelchair|Option for Wheelchair| +|Foot|foot-walking| +|Car|driving-car| +|Bicycle|cycling-regular| +|Wheelchair|wheelchair| diff --git a/docs/components/maps/polygon.md b/docs/components/maps/polygon.md index 400a28a2f..93db21376 100644 --- a/docs/components/maps/polygon.md +++ b/docs/components/maps/polygon.md @@ -58,7 +58,7 @@ Compute the distance, in meters, between two map features.
-| Params | []() | +| Param | Type | |--------|------| |map Feature|Component| |centroids|Boolean| @@ -71,7 +71,7 @@ Compute the distance, in meters, between a map feature and a latitude, longitude
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| diff --git a/docs/components/maps/rectangle.md b/docs/components/maps/rectangle.md index d4d99be1a..22dcc9eca 100644 --- a/docs/components/maps/rectangle.md +++ b/docs/components/maps/rectangle.md @@ -66,7 +66,7 @@ Compute the distance, in meters, between two map features.
-| Params | []() | +| Param | Type | |--------|------| |map Feature|Component| |centroids|Boolean| @@ -79,7 +79,7 @@ Compute the distance, in meters, between a map feature and a latitude, longitude
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -97,7 +97,7 @@ Moves the Rectangle so that it is centered on the given latitude and longitude w
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| diff --git a/docs/components/media/audio-picker.md b/docs/components/media/audio-picker.md index f50708fc0..753276738 100644 --- a/docs/components/media/audio-picker.md +++ b/docs/components/media/audio-picker.md @@ -19,7 +19,7 @@ Event raised after the picker returns multiple selections.
-| Params | []() | +| Param | Type | |--------|------| |selections|List| @@ -29,7 +29,7 @@ Event to be raised after the picker activity returns itsresult and the propertie
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -83,7 +83,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -96,7 +96,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -109,7 +109,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -123,7 +123,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -137,7 +137,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/media/camcorder.md b/docs/components/media/camcorder.md index d191ec0cd..ed504974d 100644 --- a/docs/components/media/camcorder.md +++ b/docs/components/media/camcorder.md @@ -21,7 +21,7 @@ Indicates that a video was recorded with the camera and provides the path tothe
-| Params | []() | +| Param | Type | |--------|------| |clip|Text| diff --git a/docs/components/media/camera.md b/docs/components/media/camera.md index 9608f8aae..65713d940 100644 --- a/docs/components/media/camera.md +++ b/docs/components/media/camera.md @@ -24,7 +24,7 @@ Returns the taken picture.
-| Params | []() | +| Param | Type | |--------|------| |image|Text| diff --git a/docs/components/media/image-picker.md b/docs/components/media/image-picker.md index a724db36d..9d4c44257 100644 --- a/docs/components/media/image-picker.md +++ b/docs/components/media/image-picker.md @@ -19,7 +19,7 @@ Event raised after the picker returns multiple selections.
-| Params | []() | +| Param | Type | |--------|------| |selections|List| @@ -29,7 +29,7 @@ Event to be raised after the picker activity returns itsresult and the propertie
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -83,7 +83,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -96,7 +96,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -109,7 +109,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -123,7 +123,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -137,7 +137,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/media/metadata.md b/docs/components/media/metadata.md index 10bcd7600..e143af0b3 100644 --- a/docs/components/media/metadata.md +++ b/docs/components/media/metadata.md @@ -23,7 +23,7 @@ Triggers when there is no metadata found in the file.
-| Params | []() | +| Param | Type | |--------|------| |type|Text| @@ -77,7 +77,7 @@ Get a custom metadata item from the fileyou can find a list of ids on https://de
-| Params | []() | +| Param | Type | |--------|------| |id|Number| diff --git a/docs/components/media/ocr.md b/docs/components/media/ocr.md index dfddcc5b9..49f08d40e 100644 --- a/docs/components/media/ocr.md +++ b/docs/components/media/ocr.md @@ -23,7 +23,7 @@ You will find here the success state and the response content.
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |response Content|Text| @@ -34,7 +34,7 @@ You will find here the server status from the ocr provider. Possible results are
-| Params | []() | +| Param | Type | |--------|------| |free|Text| |pro USA 1|Text| @@ -56,7 +56,7 @@ Get the text from a picture via the image url. Example: http://name/yourimage.jp
-| Params | []() | +| Param | Type | |--------|------| |image URL|Text| @@ -66,7 +66,7 @@ Upload your image to the server from ocr.space and then you get back the text fr
-| Params | []() | +| Param | Type | |--------|------| |path|Text| diff --git a/docs/components/media/player.md b/docs/components/media/player.md index 122358215..d5cf47783 100644 --- a/docs/components/media/player.md +++ b/docs/components/media/player.md @@ -39,7 +39,7 @@ The PlayerError event is no longer used. Please use the Screen.ErrorOccurred eve
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -57,7 +57,7 @@ Set a position where the source file should start playing.
-| Params | []() | +| Param | Type | |--------|------| |position|Number| @@ -67,7 +67,7 @@ Control the left and right volume of the player. Set the volume to a number betw
-| Params | []() | +| Param | Type | |--------|------| |left Volume|Number| |right Volume|Number| @@ -91,7 +91,7 @@ Vibrates for specified number of milliseconds.
-| Params | []() | +| Param | Type | |--------|------| |milliseconds|Number| diff --git a/docs/components/media/qr-code.md b/docs/components/media/qr-code.md index 806b365dc..2eb59d705 100644 --- a/docs/components/media/qr-code.md +++ b/docs/components/media/qr-code.md @@ -18,7 +18,7 @@ Triggered after GenerateQrCode finishes. On success, url is a local file:// URI
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |url|Text| @@ -62,11 +62,11 @@ Output image format used when generating the QR code image. Supported values are
-| Options | []() | +| Option | Value | |--------|------| -|Png|Option for Png| -|Jpeg|Option for Jpeg| -|Webp|Option for Webp| +|Png|png| +|Jpeg|jpeg| +|Webp|webp| ### Front Color diff --git a/docs/components/media/sound-recorder.md b/docs/components/media/sound-recorder.md index 41c5b5fa8..166413d49 100644 --- a/docs/components/media/sound-recorder.md +++ b/docs/components/media/sound-recorder.md @@ -21,7 +21,7 @@ Provides the location of the newly created sound.
-| Params | []() | +| Param | Type | |--------|------| |sound|Text| diff --git a/docs/components/media/sound.md b/docs/components/media/sound.md index 6298d36b4..12ca7abad 100644 --- a/docs/components/media/sound.md +++ b/docs/components/media/sound.md @@ -73,7 +73,7 @@ Vibrates for the specified number of milliseconds.
-| Params | []() | +| Param | Type | |--------|------| |millisecs|Number| @@ -83,7 +83,7 @@ Vibrate with a given pattern
-| Params | []() | +| Param | Type | |--------|------| |vibrate|Number| |delay|Number| diff --git a/docs/components/media/speech-recognizer.md b/docs/components/media/speech-recognizer.md index c17123275..7a0ce1ca5 100644 --- a/docs/components/media/speech-recognizer.md +++ b/docs/components/media/speech-recognizer.md @@ -23,7 +23,7 @@ Partial is 'false' when SpeechRecognizer stops automatically after listening,els
-| Params | []() | +| Param | Type | |--------|------| |result|Text| |partial|Boolean| diff --git a/docs/components/media/text-to-speech.md b/docs/components/media/text-to-speech.md index 4c0f8a9e9..c9a925730 100644 --- a/docs/components/media/text-to-speech.md +++ b/docs/components/media/text-to-speech.md @@ -28,7 +28,7 @@ Event to raise after the message is spoken.
-| Params | []() | +| Param | Type | |--------|------| |result|Boolean| @@ -46,7 +46,7 @@ Speaks the given message.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| diff --git a/docs/components/media/video-picker.md b/docs/components/media/video-picker.md index 82a8628bc..25a41f0d3 100644 --- a/docs/components/media/video-picker.md +++ b/docs/components/media/video-picker.md @@ -19,7 +19,7 @@ Event raised after the picker returns multiple selections.
-| Params | []() | +| Param | Type | |--------|------| |selections|List| @@ -29,7 +29,7 @@ Event to be raised after the picker activity returns itsresult and the propertie
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -83,7 +83,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -96,7 +96,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -109,7 +109,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -123,7 +123,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -137,7 +137,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/media/video-player.md b/docs/components/media/video-player.md index 390846b77..1b561aa56 100644 --- a/docs/components/media/video-player.md +++ b/docs/components/media/video-player.md @@ -32,7 +32,7 @@ The VideoPlayerError event is no longer used. Please use the Screen.ErrorOccurre
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -58,7 +58,7 @@ Seeks to the requested time (specified in milliseconds) in the video. If the vid
-| Params | []() | +| Param | Type | |--------|------| |ms|Number| diff --git a/docs/components/media/yandex-translate.md b/docs/components/media/yandex-translate.md index 3d7ebadf1..43f23fb1b 100644 --- a/docs/components/media/yandex-translate.md +++ b/docs/components/media/yandex-translate.md @@ -25,7 +25,7 @@ Event triggered when the Yandex.Translate service returns the translated text. T
-| Params | []() | +| Param | Type | |--------|------| |response Code|Text| |translation|Text| @@ -40,7 +40,7 @@ Note: Yandex.Translate will attempt to detect the source language. You can also
-| Params | []() | +| Param | Type | |--------|------| |language To Translate To|Text| |text To Translate|Text| diff --git a/docs/components/monetization/advertising/adcolony-interstitial.md b/docs/components/monetization/advertising/adcolony-interstitial.md index cd1f8f016..9bd0e5ca4 100644 --- a/docs/components/monetization/advertising/adcolony-interstitial.md +++ b/docs/components/monetization/advertising/adcolony-interstitial.md @@ -34,7 +34,7 @@ Called when an ad request failed to load. The message will display the error cod
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -57,7 +57,7 @@ Called when an ad request failed. The message will display the reason for why th
-| Params | []() | +| Param | Type | |--------|------| |error|Text| diff --git a/docs/components/monetization/advertising/amazon-banner.md b/docs/components/monetization/advertising/amazon-banner.md index d1b8e99e4..8402bad87 100644 --- a/docs/components/monetization/advertising/amazon-banner.md +++ b/docs/components/monetization/advertising/amazon-banner.md @@ -39,7 +39,7 @@ Event to detect that the try to load a ad was not successful.
-| Params | []() | +| Param | Type | |--------|------| |error Code|Text| |error Message|Text| diff --git a/docs/components/monetization/advertising/amazon-interstitial.md b/docs/components/monetization/advertising/amazon-interstitial.md index c5ec6b791..81c8c7073 100644 --- a/docs/components/monetization/advertising/amazon-interstitial.md +++ b/docs/components/monetization/advertising/amazon-interstitial.md @@ -47,7 +47,7 @@ Whenever an ad fails to be retrieved, the event is called, returning the error m
-| Params | []() | +| Param | Type | |--------|------| |error|Text| |message|Text| @@ -58,7 +58,7 @@ Called when an an attempt was made to display the ad, but the ad was not ready t
-| Params | []() | +| Param | Type | |--------|------| |message|Text| diff --git a/docs/components/monetization/advertising/applovin-interstitial.md b/docs/components/monetization/advertising/applovin-interstitial.md index 5d0e93e48..64b9c2d79 100644 --- a/docs/components/monetization/advertising/applovin-interstitial.md +++ b/docs/components/monetization/advertising/applovin-interstitial.md @@ -32,7 +32,7 @@ Called when an ad request failed to load. The message will display the error cod
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -61,7 +61,7 @@ Called when an ad request failed. The message will display the reason for why th
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| diff --git a/docs/components/monetization/advertising/facebook-banner.md b/docs/components/monetization/advertising/facebook-banner.md index 4dc87d838..d966aa7a8 100644 --- a/docs/components/monetization/advertising/facebook-banner.md +++ b/docs/components/monetization/advertising/facebook-banner.md @@ -42,7 +42,7 @@ Event triggered when ads failed to load
-| Params | []() | +| Param | Type | |--------|------| |error|Text| diff --git a/docs/components/monetization/advertising/facebook-interstitial.md b/docs/components/monetization/advertising/facebook-interstitial.md index 3f981fe0d..e6461159a 100644 --- a/docs/components/monetization/advertising/facebook-interstitial.md +++ b/docs/components/monetization/advertising/facebook-interstitial.md @@ -38,7 +38,7 @@ Called when an ad request failed. message will display the reason for why the ad
-| Params | []() | +| Param | Type | |--------|------| |error|Text| diff --git a/docs/components/monetization/advertising/facebook-rewarded-video.md b/docs/components/monetization/advertising/facebook-rewarded-video.md index 60f0fad8a..e399f1a5a 100644 --- a/docs/components/monetization/advertising/facebook-rewarded-video.md +++ b/docs/components/monetization/advertising/facebook-rewarded-video.md @@ -32,7 +32,7 @@ Called when an ad request failed to load. The message will display the error cod
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -67,7 +67,7 @@ Called when an ad request failed. message will display the reason for why the ad
-| Params | []() | +| Param | Type | |--------|------| |error|Text| diff --git a/docs/components/monetization/advertising/google-ad-manager-app-open.md b/docs/components/monetization/advertising/google-ad-manager-app-open.md index ce96d6427..fcc70c16b 100644 --- a/docs/components/monetization/advertising/google-ad-manager-app-open.md +++ b/docs/components/monetization/advertising/google-ad-manager-app-open.md @@ -38,7 +38,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -48,7 +48,7 @@ Event raised when an ad could not be displayed to the user.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -113,19 +113,19 @@ Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use O
-| Options | []() | +| Option | Value | |--------|------| -|Optimized|Option for Optimized| -|USD_04_50|Option for USD_04_50| -|USD_04_00|Option for USD_04_00| -|USD_03_50|Option for USD_03_50| -|USD_03_00|Option for USD_03_00| -|USD_02_50|Option for USD_02_50| -|USD_02_00|Option for USD_02_00| -|USD_01_50|Option for USD_01_50| -|USD_01_00|Option for USD_01_00| -|USD_00_80|Option for USD_00_80| -|USD_00_50|Option for USD_00_50| +|Optimized|optimized| +|USD_04_50|d_04_c_50| +|USD_04_00|d_04_c_00| +|USD_03_50|d_03_c_50| +|USD_03_00|d_03_c_00| +|USD_02_50|d_02_c_50| +|USD_02_00|d_02_c_00| +|USD_01_50|d_01_c_50| +|USD_01_00|d_01_c_00| +|USD_00_80|d_00_c_80| +|USD_00_50|d_00_c_50| ### Is Ad Available diff --git a/docs/components/monetization/advertising/google-ad-manager-banner.md b/docs/components/monetization/advertising/google-ad-manager-banner.md index 88c7094e4..a994f800c 100644 --- a/docs/components/monetization/advertising/google-ad-manager-banner.md +++ b/docs/components/monetization/advertising/google-ad-manager-banner.md @@ -61,7 +61,7 @@ Event raised when an ad could not be loaded
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -93,19 +93,19 @@ Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use O
-| Options | []() | +| Option | Value | |--------|------| -|Optimized|Option for Optimized| -|USD_04_50|Option for USD_04_50| -|USD_04_00|Option for USD_04_00| -|USD_03_50|Option for USD_03_50| -|USD_03_00|Option for USD_03_00| -|USD_02_50|Option for USD_02_50| -|USD_02_00|Option for USD_02_00| -|USD_01_50|Option for USD_01_50| -|USD_01_00|Option for USD_01_00| -|USD_00_80|Option for USD_00_80| -|USD_00_50|Option for USD_00_50| +|Optimized|optimized| +|USD_04_50|d_04_c_50| +|USD_04_00|d_04_c_00| +|USD_03_50|d_03_c_50| +|USD_03_00|d_03_c_00| +|USD_02_50|d_02_c_50| +|USD_02_00|d_02_c_00| +|USD_01_50|d_01_c_50| +|USD_01_00|d_01_c_00| +|USD_00_80|d_00_c_80| +|USD_00_50|d_00_c_50| ### Test Mode diff --git a/docs/components/monetization/advertising/google-ad-manager-interstitial.md b/docs/components/monetization/advertising/google-ad-manager-interstitial.md index 073379e03..f2da288af 100644 --- a/docs/components/monetization/advertising/google-ad-manager-interstitial.md +++ b/docs/components/monetization/advertising/google-ad-manager-interstitial.md @@ -45,7 +45,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -55,7 +55,7 @@ Event raised when an ad could not be displayed to the user.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -99,19 +99,19 @@ Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use O
-| Options | []() | +| Option | Value | |--------|------| -|Optimized|Option for Optimized| -|USD_04_50|Option for USD_04_50| -|USD_04_00|Option for USD_04_00| -|USD_03_50|Option for USD_03_50| -|USD_03_00|Option for USD_03_00| -|USD_02_50|Option for USD_02_50| -|USD_02_00|Option for USD_02_00| -|USD_01_50|Option for USD_01_50| -|USD_01_00|Option for USD_01_00| -|USD_00_80|Option for USD_00_80| -|USD_00_50|Option for USD_00_50| +|Optimized|optimized| +|USD_04_50|d_04_c_50| +|USD_04_00|d_04_c_00| +|USD_03_50|d_03_c_50| +|USD_03_00|d_03_c_00| +|USD_02_50|d_02_c_50| +|USD_02_00|d_02_c_00| +|USD_01_50|d_01_c_50| +|USD_01_00|d_01_c_00| +|USD_00_80|d_00_c_80| +|USD_00_50|d_00_c_50| ### Test Mode diff --git a/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md b/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md index be65f06ec..08544ad88 100644 --- a/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md +++ b/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md @@ -37,7 +37,7 @@ Called when an ad fails to load. The error code and message provide more details
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -54,7 +54,7 @@ Called when an ad has been successfully loaded and is ready to be shown. The "as
-| Params | []() | +| Param | Type | |--------|------| |asset Dictionary|Dictionary| @@ -123,19 +123,19 @@ Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use O
-| Options | []() | +| Option | Value | |--------|------| -|Optimized|Option for Optimized| -|USD_04_50|Option for USD_04_50| -|USD_04_00|Option for USD_04_00| -|USD_03_50|Option for USD_03_50| -|USD_03_00|Option for USD_03_00| -|USD_02_50|Option for USD_02_50| -|USD_02_00|Option for USD_02_00| -|USD_01_50|Option for USD_01_50| -|USD_01_00|Option for USD_01_00| -|USD_00_80|Option for USD_00_80| -|USD_00_50|Option for USD_00_50| +|Optimized|optimized| +|USD_04_50|d_04_c_50| +|USD_04_00|d_04_c_00| +|USD_03_50|d_03_c_50| +|USD_03_00|d_03_c_00| +|USD_02_50|d_02_c_50| +|USD_02_00|d_02_c_00| +|USD_01_50|d_01_c_50| +|USD_01_00|d_01_c_00| +|USD_00_80|d_00_c_80| +|USD_00_50|d_00_c_50| ### Headline Label diff --git a/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md b/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md index caf61c8f4..73a7fb7bc 100644 --- a/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md +++ b/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md @@ -44,7 +44,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -54,7 +54,7 @@ Event raised when an ad could not be shown.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -70,7 +70,7 @@ Event raised when the user has earned a reward.
-| Params | []() | +| Param | Type | |--------|------| |type|Text| |amount|Number| @@ -109,19 +109,19 @@ Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use O
-| Options | []() | +| Option | Value | |--------|------| -|Optimized|Option for Optimized| -|USD_04_50|Option for USD_04_50| -|USD_04_00|Option for USD_04_00| -|USD_03_50|Option for USD_03_50| -|USD_03_00|Option for USD_03_00| -|USD_02_50|Option for USD_02_50| -|USD_02_00|Option for USD_02_00| -|USD_01_50|Option for USD_01_50| -|USD_01_00|Option for USD_01_00| -|USD_00_80|Option for USD_00_80| -|USD_00_50|Option for USD_00_50| +|Optimized|optimized| +|USD_04_50|d_04_c_50| +|USD_04_00|d_04_c_00| +|USD_03_50|d_03_c_50| +|USD_03_00|d_03_c_00| +|USD_02_50|d_02_c_50| +|USD_02_00|d_02_c_00| +|USD_01_50|d_01_c_50| +|USD_01_00|d_01_c_00| +|USD_00_80|d_00_c_80| +|USD_00_50|d_00_c_50| ### Test Mode diff --git a/docs/components/monetization/advertising/google-ad-manager-rewarded.md b/docs/components/monetization/advertising/google-ad-manager-rewarded.md index e8379d5da..484b5089f 100644 --- a/docs/components/monetization/advertising/google-ad-manager-rewarded.md +++ b/docs/components/monetization/advertising/google-ad-manager-rewarded.md @@ -45,7 +45,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -55,7 +55,7 @@ Event raised when an ad could not be shown.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -71,7 +71,7 @@ Event raised when the user has earned a reward.
-| Params | []() | +| Param | Type | |--------|------| |type|Text| |amount|Number| @@ -110,19 +110,19 @@ Set a minimum eCPM floor below which advertisers cannot bid for inventory. Use O
-| Options | []() | +| Option | Value | |--------|------| -|Optimized|Option for Optimized| -|USD_04_50|Option for USD_04_50| -|USD_04_00|Option for USD_04_00| -|USD_03_50|Option for USD_03_50| -|USD_03_00|Option for USD_03_00| -|USD_02_50|Option for USD_02_50| -|USD_02_00|Option for USD_02_00| -|USD_01_50|Option for USD_01_50| -|USD_01_00|Option for USD_01_00| -|USD_00_80|Option for USD_00_80| -|USD_00_50|Option for USD_00_50| +|Optimized|optimized| +|USD_04_50|d_04_c_50| +|USD_04_00|d_04_c_00| +|USD_03_50|d_03_c_50| +|USD_03_00|d_03_c_00| +|USD_02_50|d_02_c_50| +|USD_02_00|d_02_c_00| +|USD_01_50|d_01_c_50| +|USD_01_00|d_01_c_00| +|USD_00_80|d_00_c_80| +|USD_00_50|d_00_c_50| ### Test Mode diff --git a/docs/components/monetization/advertising/google-admob-app-open.md b/docs/components/monetization/advertising/google-admob-app-open.md index 4edfd3a75..57d23de5d 100644 --- a/docs/components/monetization/advertising/google-admob-app-open.md +++ b/docs/components/monetization/advertising/google-admob-app-open.md @@ -38,7 +38,7 @@ Called when an ad request fails to load. The error code and message provide more
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -49,7 +49,7 @@ Called when the ad fails to show in full screen. The error code and message prov
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| diff --git a/docs/components/monetization/advertising/google-admob-banner.md b/docs/components/monetization/advertising/google-admob-banner.md index 64d9fbd4a..2d7f88f42 100644 --- a/docs/components/monetization/advertising/google-admob-banner.md +++ b/docs/components/monetization/advertising/google-admob-banner.md @@ -36,7 +36,7 @@ Called when an ad request fails to load. The error code and message provide more
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| diff --git a/docs/components/monetization/advertising/google-admob-interstitial.md b/docs/components/monetization/advertising/google-admob-interstitial.md index 573d51d19..d33cc20b0 100644 --- a/docs/components/monetization/advertising/google-admob-interstitial.md +++ b/docs/components/monetization/advertising/google-admob-interstitial.md @@ -38,7 +38,7 @@ Called when an ad request fails to load. The error code and message provide more
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -49,7 +49,7 @@ Called when the ad fails to show in full screen. The error code and message prov
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| diff --git a/docs/components/monetization/advertising/google-admob-native-ad-layout.md b/docs/components/monetization/advertising/google-admob-native-ad-layout.md index 3dd855a23..ce2c517d3 100644 --- a/docs/components/monetization/advertising/google-admob-native-ad-layout.md +++ b/docs/components/monetization/advertising/google-admob-native-ad-layout.md @@ -36,7 +36,7 @@ Called when an ad fails to load. The error code and message provide more details
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -53,7 +53,7 @@ Called when an ad has been successfully loaded and is ready to be shown. The "as
-| Params | []() | +| Param | Type | |--------|------| |asset Dictionary|Dictionary| diff --git a/docs/components/monetization/advertising/google-admob-rewarded-interstitial.md b/docs/components/monetization/advertising/google-admob-rewarded-interstitial.md index 143202847..8d86b3bdd 100644 --- a/docs/components/monetization/advertising/google-admob-rewarded-interstitial.md +++ b/docs/components/monetization/advertising/google-admob-rewarded-interstitial.md @@ -38,7 +38,7 @@ Called when a rewarded ad request fails to load. The error code and message prov
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -49,7 +49,7 @@ Called when the rewarded ad fails to show in full screen. The error code and mes
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -78,7 +78,7 @@ Called when the user has finished watching the ad and should be rewarded. The `t
-| Params | []() | +| Param | Type | |--------|------| |type|Text| |amount|Number| diff --git a/docs/components/monetization/advertising/google-admob-rewarded.md b/docs/components/monetization/advertising/google-admob-rewarded.md index 2b639af1b..fe2479147 100644 --- a/docs/components/monetization/advertising/google-admob-rewarded.md +++ b/docs/components/monetization/advertising/google-admob-rewarded.md @@ -38,7 +38,7 @@ Called when a rewarded ad request fails to load. The error code and message prov
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -49,7 +49,7 @@ Called when the rewarded ad fails to show in full screen. The error code and mes
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -78,7 +78,7 @@ Called when the user has finished watching the video and should be rewarded. The
-| Params | []() | +| Param | Type | |--------|------| |type|Text| |amount|Number| diff --git a/docs/components/monetization/advertising/leadbolt.md b/docs/components/monetization/advertising/leadbolt.md index 00a98b23e..70c5ba2a0 100644 --- a/docs/components/monetization/advertising/leadbolt.md +++ b/docs/components/monetization/advertising/leadbolt.md @@ -26,7 +26,7 @@ Event triggered when ads are clicked
-| Params | []() | +| Param | Type | |--------|------| |location|Text| @@ -36,7 +36,7 @@ Event triggered when ads are closed
-| Params | []() | +| Param | Type | |--------|------| |location|Text| |reward|Boolean| @@ -47,7 +47,7 @@ Event triggered when ads are failed to load
-| Params | []() | +| Param | Type | |--------|------| |location|Text| |error|Text| @@ -59,7 +59,7 @@ Event triggered when ads are loaded
-| Params | []() | +| Param | Type | |--------|------| |location|Text| @@ -69,7 +69,7 @@ Event triggered when ads are shown
-| Params | []() | +| Param | Type | |--------|------| |location|Text| diff --git a/docs/components/monetization/advertising/startio-banner.md b/docs/components/monetization/advertising/startio-banner.md index 3735ec879..bfee41ac5 100644 --- a/docs/components/monetization/advertising/startio-banner.md +++ b/docs/components/monetization/advertising/startio-banner.md @@ -31,7 +31,7 @@ Called when an ad request failed to load. The message will display the error cod
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -42,7 +42,7 @@ Called when an ad request failed to load.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| diff --git a/docs/components/monetization/advertising/startio-cover-ad.md b/docs/components/monetization/advertising/startio-cover-ad.md index 5229f3a9d..107ae7788 100644 --- a/docs/components/monetization/advertising/startio-cover-ad.md +++ b/docs/components/monetization/advertising/startio-cover-ad.md @@ -31,7 +31,7 @@ Called when an ad request failed to load.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| diff --git a/docs/components/monetization/advertising/startio-interstitial.md b/docs/components/monetization/advertising/startio-interstitial.md index b70a7c6da..80179dce8 100644 --- a/docs/components/monetization/advertising/startio-interstitial.md +++ b/docs/components/monetization/advertising/startio-interstitial.md @@ -39,7 +39,7 @@ Called when an ad request failed to load. The message will display the error cod
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -50,7 +50,7 @@ Called when an an attempt was made to display the ad, but the ad was not ready t
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -66,7 +66,7 @@ Called when an ad request failed to load.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -101,12 +101,12 @@ The type of interstitial ad to load.
-| Options | []() | +| Option | Value | |--------|------| -|Automatic|Option for Automatic| -|FullPage|Option for FullPage| -|Video|Option for Video| -|Overlay|Option for Overlay| +|Automatic|automatic| +|FullPage|fullpage| +|Video|video| +|Overlay|overlay| ### Enable Consent diff --git a/docs/components/monetization/advertising/startio-mrec-ad.md b/docs/components/monetization/advertising/startio-mrec-ad.md index 81f82128e..4d72e5384 100644 --- a/docs/components/monetization/advertising/startio-mrec-ad.md +++ b/docs/components/monetization/advertising/startio-mrec-ad.md @@ -31,7 +31,7 @@ Called when an ad request failed to load.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| diff --git a/docs/components/monetization/advertising/startio-native-ad-layout.md b/docs/components/monetization/advertising/startio-native-ad-layout.md index 3b0fcab92..f6e727517 100644 --- a/docs/components/monetization/advertising/startio-native-ad-layout.md +++ b/docs/components/monetization/advertising/startio-native-ad-layout.md @@ -31,7 +31,7 @@ Called when a native ad fails to load.
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -48,7 +48,7 @@ Called when a native ad has been loaded successfully.
-| Params | []() | +| Param | Type | |--------|------| |asset Dictionary|Dictionary| @@ -146,12 +146,12 @@ The size of the primary image in native ads.
-| Options | []() | +| Option | Value | |--------|------| -|Size72x72|Option for Size72x72| -|Size100x100|Option for Size100x100| -|Size150x150|Option for Size150x150| -|Size340x340|Option for Size340x340| +|Size72x72|SIZE72X72| +|Size100x100|SIZE100X100| +|Size150x150|SIZE150X150| +|Size340x340|SIZE340X340| ### Set User Consent diff --git a/docs/components/monetization/advertising/startio-rewarded-ad.md b/docs/components/monetization/advertising/startio-rewarded-ad.md index 0ccdc197c..dc47a511c 100644 --- a/docs/components/monetization/advertising/startio-rewarded-ad.md +++ b/docs/components/monetization/advertising/startio-rewarded-ad.md @@ -39,7 +39,7 @@ Called when an attempt was made to display the ad, but the ad was not ready.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -55,7 +55,7 @@ Called when an ad request failed to load.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| diff --git a/docs/components/monetization/advertising/tapjoy-offerwall.md b/docs/components/monetization/advertising/tapjoy-offerwall.md index 935410905..7b902f24d 100644 --- a/docs/components/monetization/advertising/tapjoy-offerwall.md +++ b/docs/components/monetization/advertising/tapjoy-offerwall.md @@ -23,7 +23,7 @@ Called when currency has been successfully awarded.
-| Params | []() | +| Param | Type | |--------|------| |amount|Number| |totalBalance|Number| @@ -34,7 +34,7 @@ Called when the currency balance has been received.
-| Params | []() | +| Param | Type | |--------|------| |currencyName|Text| |balance|Number| @@ -45,7 +45,7 @@ Called when the user earns currency by completing an offer.
-| Params | []() | +| Param | Type | |--------|------| |currencyName|Text| |amount|Number| @@ -57,7 +57,7 @@ Called when a currency request fails.
-| Params | []() | +| Param | Type | |--------|------| |error|Text| @@ -67,7 +67,7 @@ Called when currency has been successfully spent.
-| Params | []() | +| Param | Type | |--------|------| |amount|Number| |totalBalance|Number| @@ -90,7 +90,7 @@ Called when the offerwall fails to load.
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -115,7 +115,7 @@ Awards the specified amount of virtual currency.
-| Params | []() | +| Param | Type | |--------|------| |amount|Number| @@ -159,7 +159,7 @@ Configures privacy policy settings. Parameters are: subjectToGdpr (true/false),
-| Params | []() | +| Param | Type | |--------|------| |subjectToGdpr|Boolean| |userConsent|Boolean| @@ -178,7 +178,7 @@ Spends the specified amount of virtual currency.
-| Params | []() | +| Param | Type | |--------|------| |amount|Number| diff --git a/docs/components/monetization/advertising/unity-banner-ad.md b/docs/components/monetization/advertising/unity-banner-ad.md index 6713a383f..70e31f8d1 100644 --- a/docs/components/monetization/advertising/unity-banner-ad.md +++ b/docs/components/monetization/advertising/unity-banner-ad.md @@ -38,7 +38,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -70,11 +70,11 @@ Sets the banner size. Options: standard (320x50), large (320x90), rectangle (300
-| Options | []() | +| Option | Value | |--------|------| -|Standard|Option for Standard| -|Large|Option for Large| -|Rectangle|Option for Rectangle| +|Standard|standard| +|Large|large| +|Rectangle|rectangle| ### Test Mode diff --git a/docs/components/monetization/advertising/unity-interstitial-ad.md b/docs/components/monetization/advertising/unity-interstitial-ad.md index c68fc3dd6..ab24b284d 100644 --- a/docs/components/monetization/advertising/unity-interstitial-ad.md +++ b/docs/components/monetization/advertising/unity-interstitial-ad.md @@ -46,7 +46,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -56,7 +56,7 @@ Event raised when an ad could not be shown.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| diff --git a/docs/components/monetization/advertising/unity-rewarded-ad.md b/docs/components/monetization/advertising/unity-rewarded-ad.md index 953c95ac3..3c4eb9cde 100644 --- a/docs/components/monetization/advertising/unity-rewarded-ad.md +++ b/docs/components/monetization/advertising/unity-rewarded-ad.md @@ -52,7 +52,7 @@ Event raised when an ad could not be loaded.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -62,7 +62,7 @@ Event raised when an ad could not be shown.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| diff --git a/docs/components/monetization/general/in-app-billing.md b/docs/components/monetization/general/in-app-billing.md index f5df17625..3ee5d0cde 100644 --- a/docs/components/monetization/general/in-app-billing.md +++ b/docs/components/monetization/general/in-app-billing.md @@ -22,7 +22,7 @@ After purchase event.
-| Params | []() | +| Param | Type | |--------|------| |product Id|Text| @@ -32,7 +32,7 @@ When product is consumed.
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |product Id|Text| @@ -43,7 +43,7 @@ Error occurred event.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -53,7 +53,7 @@ Got Owned Purchases
-| Params | []() | +| Param | Type | |--------|------| |owned Products|List| |owned Subscriptions|List| @@ -64,7 +64,7 @@ Got Product Details
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |product Id|Text| @@ -79,7 +79,7 @@ Triggers with the result of IsPurchased
-| Params | []() | +| Param | Type | |--------|------| |product Id|Text| |product Type|Text| @@ -91,7 +91,7 @@ Got Subscription Details
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| |is Subscription|Boolean| @@ -109,7 +109,7 @@ Method for CheckPurchase
-| Params | []() | +| Param | Type | |--------|------| |product Id|Text| |product Type|Text| @@ -120,7 +120,7 @@ Consumes a purchase to enable users to buy it again.
-| Params | []() | +| Param | Type | |--------|------| |sku|Text| @@ -132,7 +132,7 @@ Do not use this block anymore. This block is deprecated and does nothing and wil
-| Params | []() | +| Param | Type | |--------|------| |license Key|Text| |merchant Id|Text| @@ -147,7 +147,7 @@ Returns true if the product with the specific id is purchased.
-| Params | []() | +| Param | Type | |--------|------| |product Id|Text| @@ -161,7 +161,7 @@ Returns true if the product is subscribed.
-| Params | []() | +| Param | Type | |--------|------| |subscription Id|Text| @@ -177,7 +177,7 @@ Get product details from the specific product id. Product type can be either ina
-| Params | []() | +| Param | Type | |--------|------| |product Id|Text| |product Type|Text| @@ -188,7 +188,7 @@ Purchase a product with the given product id.
-| Params | []() | +| Param | Type | |--------|------| |product Id|Text| |product Type|Text| @@ -201,7 +201,7 @@ Subscribe a product with the given product id.
-| Params | []() | +| Param | Type | |--------|------| |subscription Id|Text| @@ -213,7 +213,7 @@ Get subscription details from the given id.
-| Params | []() | +| Param | Type | |--------|------| |subscription Id|Text| @@ -225,7 +225,7 @@ Do not use this block anymore. This block is deprecated and does nothing and wil
-| Params | []() | +| Param | Type | |--------|------| |subscription Id|Text| diff --git a/docs/components/monetization/general/pollfish.md b/docs/components/monetization/general/pollfish.md index dbd8e8ed9..d286307bc 100644 --- a/docs/components/monetization/general/pollfish.md +++ b/docs/components/monetization/general/pollfish.md @@ -27,7 +27,7 @@ Called when Pollfish survey was completed. surveyInfo is CSV list containing CPA
-| Params | []() | +| Param | Type | |--------|------| |survey Info|Text| @@ -49,7 +49,7 @@ Called when device receives survey and user can be prompted to start the survey.
-| Params | []() | +| Param | Type | |--------|------| |survey Info|Text| diff --git a/docs/components/screen.md b/docs/components/screen.md index eec1d4ba6..48929d95a 100644 --- a/docs/components/screen.md +++ b/docs/components/screen.md @@ -37,7 +37,7 @@ Event raised when an error occurs. Only some errors will raise this condition. F
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |function Name|Text| @@ -50,7 +50,7 @@ Event to detect that a user shared content to your app throw the sharing dialog
-| Params | []() | +| Param | Type | |--------|------| |type|Number| |value|Text| @@ -67,7 +67,7 @@ Event will be invoked if the keyboard was visible or invisible. Note: This will
-| Params | []() | +| Param | Type | |--------|------| |is Keyboard Visible|Boolean| @@ -83,7 +83,7 @@ Event to detect when a menu item has been selected.
-| Params | []() | +| Param | Type | |--------|------| |menu Item|Text| @@ -111,7 +111,7 @@ Event raised when another screen has closed and control has returned to this scr
-| Params | []() | +| Param | Type | |--------|------| |other Screen Name|Text| |result|Any| @@ -122,30 +122,30 @@ Event to handle when the app user has denied a needed permission.
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |function Name|Text| |permission Name|Text
Permission| -| permission Name Options | []() | +| permission Name Option | Value | |--------|------| -|CoarseLocation|Option for CoarseLocation| -|FineLocation|Option for FineLocation| -|LocationExtraCommands|Option for LocationExtraCommands| -|ReadExternalStorage|Option for ReadExternalStorage| -|WriteExternalStorage|Option for WriteExternalStorage| -|Camera|Option for Camera| -|Audio|Option for Audio| -|GetAccounts|Option for GetAccounts| -|ReadContacts|Option for ReadContacts| -|BluetoothAdvertise|Option for BluetoothAdvertise| -|BluetoothConnect|Option for BluetoothConnect| -|BluetoothScan|Option for BluetoothScan| -|ReadMediaImages|Option for ReadMediaImages| -|ReadMediaVideo|Option for ReadMediaVideo| -|ReadMediaAudio|Option for ReadMediaAudio| -|PostNotifications|Option for PostNotifications| +|CoarseLocation|ACCESS_COARSE_LOCATION| +|FineLocation|ACCESS_FINE_LOCATION| +|LocationExtraCommands|ACCESS_LOCATION_EXTRA_COMMANDS| +|ReadExternalStorage|READ_EXTERNAL_STORAGE| +|WriteExternalStorage|WRITE_EXTERNAL_STORAGE| +|Camera|CAMERA| +|Audio|RECORD_AUDIO| +|GetAccounts|GET_ACCOUNTS| +|ReadContacts|READ_CONTACTS| +|BluetoothAdvertise|BLUETOOTH_ADVERTISE| +|BluetoothConnect|BLUETOOTH_CONNECT| +|BluetoothScan|BLUETOOTH_SCAN| +|ReadMediaImages|READ_MEDIA_IMAGES| +|ReadMediaVideo|READ_MEDIA_VIDEO| +|ReadMediaAudio|READ_MEDIA_AUDIO| +|PostNotifications|POST_NOTIFICATIONS| ### Permission Granted @@ -153,28 +153,28 @@ Event to handle when the app user has granted a needed permission. This event is
-| Params | []() | +| Param | Type | |--------|------| |permission Name|Text
Permission| -| permission Name Options | []() | +| permission Name Option | Value | |--------|------| -|CoarseLocation|Option for CoarseLocation| -|FineLocation|Option for FineLocation| -|LocationExtraCommands|Option for LocationExtraCommands| -|ReadExternalStorage|Option for ReadExternalStorage| -|WriteExternalStorage|Option for WriteExternalStorage| -|Camera|Option for Camera| -|Audio|Option for Audio| -|GetAccounts|Option for GetAccounts| -|ReadContacts|Option for ReadContacts| -|BluetoothAdvertise|Option for BluetoothAdvertise| -|BluetoothConnect|Option for BluetoothConnect| -|BluetoothScan|Option for BluetoothScan| -|ReadMediaImages|Option for ReadMediaImages| -|ReadMediaVideo|Option for ReadMediaVideo| -|ReadMediaAudio|Option for ReadMediaAudio| -|PostNotifications|Option for PostNotifications| +|CoarseLocation|ACCESS_COARSE_LOCATION| +|FineLocation|ACCESS_FINE_LOCATION| +|LocationExtraCommands|ACCESS_LOCATION_EXTRA_COMMANDS| +|ReadExternalStorage|READ_EXTERNAL_STORAGE| +|WriteExternalStorage|WRITE_EXTERNAL_STORAGE| +|Camera|CAMERA| +|Audio|RECORD_AUDIO| +|GetAccounts|GET_ACCOUNTS| +|ReadContacts|READ_CONTACTS| +|BluetoothAdvertise|BLUETOOTH_ADVERTISE| +|BluetoothConnect|BLUETOOTH_CONNECT| +|BluetoothScan|BLUETOOTH_SCAN| +|ReadMediaImages|READ_MEDIA_IMAGES| +|ReadMediaVideo|READ_MEDIA_VIDEO| +|ReadMediaAudio|READ_MEDIA_AUDIO| +|PostNotifications|POST_NOTIFICATIONS| ### Screen Orientation Changed @@ -206,7 +206,7 @@ The event returns the 'icon' or 'name' of the selected icon.
-| Params | []() | +| Param | Type | |--------|------| |icon|Text| |name|Text| @@ -219,7 +219,7 @@ Add a new item to the menu. Use the 'make a list' block.
-| Params | []() | +| Param | Type | |--------|------| |menu Item|List| @@ -229,7 +229,7 @@ Add a new item with a icon on the left side to the menu. This function does not
-| Params | []() | +| Param | Type | |--------|------| |menu Item|Text| |menu Icon|Text| @@ -240,7 +240,7 @@ Add a new action icon to the TitleBar. You will see a toast message on a long cl
-| Params | []() | +| Param | Type | |--------|------| |icon|Text| |name|Text| @@ -259,28 +259,28 @@ Ask the user to grant access to a dangerous permission.
-| Params | []() | +| Param | Type | |--------|------| |permission Name|Text
Permission| -| permission Name Options | []() | +| permission Name Option | Value | |--------|------| -|CoarseLocation|Option for CoarseLocation| -|FineLocation|Option for FineLocation| -|LocationExtraCommands|Option for LocationExtraCommands| -|ReadExternalStorage|Option for ReadExternalStorage| -|WriteExternalStorage|Option for WriteExternalStorage| -|Camera|Option for Camera| -|Audio|Option for Audio| -|GetAccounts|Option for GetAccounts| -|ReadContacts|Option for ReadContacts| -|BluetoothAdvertise|Option for BluetoothAdvertise| -|BluetoothConnect|Option for BluetoothConnect| -|BluetoothScan|Option for BluetoothScan| -|ReadMediaImages|Option for ReadMediaImages| -|ReadMediaVideo|Option for ReadMediaVideo| -|ReadMediaAudio|Option for ReadMediaAudio| -|PostNotifications|Option for PostNotifications| +|CoarseLocation|ACCESS_COARSE_LOCATION| +|FineLocation|ACCESS_FINE_LOCATION| +|LocationExtraCommands|ACCESS_LOCATION_EXTRA_COMMANDS| +|ReadExternalStorage|READ_EXTERNAL_STORAGE| +|WriteExternalStorage|WRITE_EXTERNAL_STORAGE| +|Camera|CAMERA| +|Audio|RECORD_AUDIO| +|GetAccounts|GET_ACCOUNTS| +|ReadContacts|READ_CONTACTS| +|BluetoothAdvertise|BLUETOOTH_ADVERTISE| +|BluetoothConnect|BLUETOOTH_CONNECT| +|BluetoothScan|BLUETOOTH_SCAN| +|ReadMediaImages|READ_MEDIA_IMAGES| +|ReadMediaVideo|READ_MEDIA_VIDEO| +|ReadMediaAudio|READ_MEDIA_AUDIO| +|PostNotifications|POST_NOTIFICATIONS| ### Can Write System Settings @@ -356,7 +356,7 @@ Create a Side Menu. Set to "layout" your layout that will be then your side menu
-| Params | []() | +| Param | Type | |--------|------| |layout|Component| @@ -378,7 +378,7 @@ Sets information describing the task with this activity for presentation inside
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |color|Number| @@ -463,11 +463,11 @@ A number that encodes how contents of the screen are aligned horizontally. The c
-| Options | []() | +| Option | Value | |--------|------| -|Left|Option for Left| -|Center|Option for Center| -|Right|Option for Right| +|Left|1| +|Center|3| +|Right|2| ### Align Vertical @@ -478,11 +478,11 @@ A number that encodes how the contents of the arrangement are aligned vertically
-| Options | []() | +| Option | Value | |--------|------| -|Top|Option for Top| -|Center|Option for Center| -|Bottom|Option for Bottom| +|Top|1| +|Center|2| +|Bottom|3| ### App ID @@ -523,14 +523,14 @@ The animation for closing current screen and returning to the previous screen. V
-| Options | []() | +| Option | Value | |--------|------| -|Default|Option for Default| -|Fade|Option for Fade| -|Zoom|Option for Zoom| -|SlideHorizontal|Option for SlideHorizontal| -|SlideVertical|Option for SlideVertical| -|None|Option for None| +|Default|default| +|Fade|fade| +|Zoom|zoom| +|SlideHorizontal|slidehorizontal| +|SlideVertical|slidevertical| +|None|none| ### Default File Scope @@ -538,14 +538,14 @@ The animation for closing current screen and returning to the previous screen. V Specifies the default scope used when components access files. Note that the -| Options | []() | +| Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Drawer Arrow Icon Color @@ -680,14 +680,14 @@ The animation for switching to another screen. Valid options are default, fade,
-| Options | []() | +| Option | Value | |--------|------| -|Default|Option for Default| -|Fade|Option for Fade| -|Zoom|Option for Zoom| -|SlideHorizontal|Option for SlideHorizontal| -|SlideVertical|Option for SlideVertical| -|None|Option for None| +|Default|default| +|Fade|fade| +|Zoom|zoom| +|SlideHorizontal|slidehorizontal| +|SlideVertical|slidevertical| +|None|none| ### Options Menu Icon Color @@ -735,20 +735,20 @@ The requested screen orientation, specified as a text value. Commonly used value
-| Options | []() | +| Option | Value | |--------|------| -|Unspecified|Option for Unspecified| -|Landscape|Option for Landscape| -|Portrait|Option for Portrait| -|Sensor|Option for Sensor| -|User|Option for User| -|Behind|Option for Behind| -|NoSensor|Option for NoSensor| -|FullSensor|Option for FullSensor| -|ReverseLandscape|Option for ReverseLandscape| -|ReversePortrait|Option for ReversePortrait| -|SensorLandscape|Option for SensorLandscape| -|SensorPortrait|Option for SensorPortrait| +|Unspecified|unspecified| +|Landscape|landscape| +|Portrait|portrait| +|Sensor|sensor| +|User|user| +|Behind|behind| +|NoSensor|nosensor| +|FullSensor|fullSensor| +|ReverseLandscape|reverseLandscape| +|ReversePortrait|reversePortrait| +|SensorLandscape|sensorLandscape| +|SensorPortrait|sensorPortrait| ### Scrollable diff --git a/docs/components/sensors/accelerometer-sensor.md b/docs/components/sensors/accelerometer-sensor.md index 28a7f401e..3ba506185 100644 --- a/docs/components/sensors/accelerometer-sensor.md +++ b/docs/components/sensors/accelerometer-sensor.md @@ -22,7 +22,7 @@ Indicates the acceleration changed in the X, Y, and/or Z dimensions.
-| Params | []() | +| Param | Type | |--------|------| |x Accel|Number| |y Accel|Number| @@ -77,11 +77,11 @@ A number that encodes how sensitive the accelerometer is. The choices are: 1 = w
-| Options | []() | +| Option | Value | |--------|------| -|Weak|Option for Weak| -|Moderate|Option for Moderate| -|Strong|Option for Strong| +|Weak|1| +|Moderate|2| +|Strong|3| ### X Accel diff --git a/docs/components/sensors/barcode-scanner.md b/docs/components/sensors/barcode-scanner.md index 1679e460a..404a37c6b 100644 --- a/docs/components/sensors/barcode-scanner.md +++ b/docs/components/sensors/barcode-scanner.md @@ -21,7 +21,7 @@ Indicates that the scanner has read a (text) result and provides the result
-| Params | []() | +| Param | Type | |--------|------| |result|Text| diff --git a/docs/components/sensors/biometric-prompt.md b/docs/components/sensors/biometric-prompt.md index adb5247f3..d9c76911b 100644 --- a/docs/components/sensors/biometric-prompt.md +++ b/docs/components/sensors/biometric-prompt.md @@ -22,7 +22,7 @@ Triggered on a non-recoverable authentication error. The prompt is dismissed. Co
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -94,11 +94,11 @@ Sets the type of authentication allowed. BiometricOnly = biometrics only, Device
-| Options | []() | +| Option | Value | |--------|------| -|BiometricOnly|Option for BiometricOnly| -|DeviceCredentialOnly|Option for DeviceCredentialOnly| -|BiometricOrDeviceCredential|Option for BiometricOrDeviceCredential| +|BiometricOnly|1| +|DeviceCredentialOnly|2| +|BiometricOrDeviceCredential|3| ### Description diff --git a/docs/components/sensors/clock.md b/docs/components/sensors/clock.md index 753cb7b1f..9d592d290 100644 --- a/docs/components/sensors/clock.md +++ b/docs/components/sensors/clock.md @@ -32,7 +32,7 @@ An instant in time some days after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -45,7 +45,7 @@ An instant in time some duration after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -58,7 +58,7 @@ An instant in time some hours after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -71,7 +71,7 @@ An instant in time some minutes after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -84,7 +84,7 @@ An instant in time some months after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -97,7 +97,7 @@ An instant in time some seconds after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -110,7 +110,7 @@ An instant in time some weeks after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -123,7 +123,7 @@ An instant in time some years after the argument
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |quantity|Number| @@ -136,7 +136,7 @@ The day of the month
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -148,7 +148,7 @@ Milliseconds elapsed between instants
-| Params | []() | +| Param | Type | |--------|------| |start|Instantintime| |end|Instantintime| @@ -161,7 +161,7 @@ convert duration to days
-| Params | []() | +| Param | Type | |--------|------| |duration|Number| @@ -173,7 +173,7 @@ convert duration to hours
-| Params | []() | +| Param | Type | |--------|------| |duration|Number| @@ -185,7 +185,7 @@ convert duration to minutes
-| Params | []() | +| Param | Type | |--------|------| |duration|Number| @@ -197,7 +197,7 @@ convert duration to seconds
-| Params | []() | +| Param | Type | |--------|------| |duration|Number| @@ -209,7 +209,7 @@ convert duration to weeks
-| Params | []() | +| Param | Type | |--------|------| |duration|Number| @@ -221,7 +221,7 @@ Text representing the date of an instant in the specified pattern
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |pattern|Text| @@ -234,7 +234,7 @@ Text representing the date and time of an instant in the specified pattern
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| |pattern|Text| @@ -247,7 +247,7 @@ Text representing the time of an instant
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -259,7 +259,7 @@ The instant in time measured as milliseconds since 1970.
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -271,7 +271,7 @@ The hour of the day
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -284,7 +284,7 @@ Valid values for the month field are 1-12 and 1-31 for the day field.
-| Params | []() | +| Param | Type | |--------|------| |year|Number| |month|Number| @@ -298,7 +298,7 @@ An instant in time specified by MM/dd/YYYY hh:mm:ss or MM/dd/YYYY or hh:mm
-| Params | []() | +| Param | Type | |--------|------| |from|Text| @@ -310,7 +310,7 @@ An instant in time specified by the milliseconds since 1970.
-| Params | []() | +| Param | Type | |--------|------| |millis|Number| @@ -323,7 +323,7 @@ Valid values for the month field are 1-12 and 1-31 for the day field.
-| Params | []() | +| Param | Type | |--------|------| |year|Number| |month|Number| @@ -340,7 +340,7 @@ Allows the user to set the time of the clock - Valid format is hh:mm:ss
-| Params | []() | +| Param | Type | |--------|------| |hour|Number| |minute|Number| @@ -354,7 +354,7 @@ The minute of the hour
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -366,7 +366,7 @@ The month of the year represented as a number from 1 to 12)
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -378,7 +378,7 @@ The name of the month
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -398,7 +398,7 @@ The second of the minute
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -418,7 +418,7 @@ The day of the week represented as a number from 1 (Sunday) to 7 (Saturday)
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -430,7 +430,7 @@ The name of the day of the week
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -442,7 +442,7 @@ The year
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| diff --git a/docs/components/sensors/gravity-sensor.md b/docs/components/sensors/gravity-sensor.md index 526c027db..4b9517761 100644 --- a/docs/components/sensors/gravity-sensor.md +++ b/docs/components/sensors/gravity-sensor.md @@ -19,7 +19,7 @@ Indicates that the gravity sensor data has changed.
-| Params | []() | +| Param | Type | |--------|------| |x Accel|Number| |y Accel|Number| diff --git a/docs/components/sensors/gyroscope-sensor.md b/docs/components/sensors/gyroscope-sensor.md index fedc009c4..5977fbdae 100644 --- a/docs/components/sensors/gyroscope-sensor.md +++ b/docs/components/sensors/gyroscope-sensor.md @@ -20,7 +20,7 @@ Indicates that the gyroscope sensor data has changed. The timestamp parameter is
-| Params | []() | +| Param | Type | |--------|------| |x Angular Velocity|Number| |y Angular Velocity|Number| diff --git a/docs/components/sensors/hygrometer.md b/docs/components/sensors/hygrometer.md index 4b9f10ef7..a980f2636 100644 --- a/docs/components/sensors/hygrometer.md +++ b/docs/components/sensors/hygrometer.md @@ -18,7 +18,7 @@ Called when a change is detected in the ambient air humidity (expressed as a per
-| Params | []() | +| Param | Type | |--------|------| |humidity|Number| diff --git a/docs/components/sensors/light-sensor.md b/docs/components/sensors/light-sensor.md index baac3d9e5..4da7f9942 100644 --- a/docs/components/sensors/light-sensor.md +++ b/docs/components/sensors/light-sensor.md @@ -18,7 +18,7 @@ Event that fires when the illuminance is changed
-| Params | []() | +| Param | Type | |--------|------| |illuminance|Number| diff --git a/docs/components/sensors/location-sensor.md b/docs/components/sensors/location-sensor.md index 95b5e653e..514cc9a91 100644 --- a/docs/components/sensors/location-sensor.md +++ b/docs/components/sensors/location-sensor.md @@ -28,7 +28,7 @@ Indicates that a new location has been detected.
-| Params | []() | +| Param | Type | |--------|------| |latitude|Number| |longitude|Number| @@ -41,7 +41,7 @@ Indicates that the status of the location provider service has changed, such as
-| Params | []() | +| Param | Type | |--------|------| |provider|Text| |status|Text| @@ -56,7 +56,7 @@ Derives latitude of given address
-| Params | []() | +| Param | Type | |--------|------| |location Name|Text| @@ -68,7 +68,7 @@ Derives longitude of given address
-| Params | []() | +| Param | Type | |--------|------| |location Name|Text| diff --git a/docs/components/sensors/magnetic-field-sensor.md b/docs/components/sensors/magnetic-field-sensor.md index f76c59cf3..fc8caa07f 100644 --- a/docs/components/sensors/magnetic-field-sensor.md +++ b/docs/components/sensors/magnetic-field-sensor.md @@ -18,7 +18,7 @@ Indicates that the magnetic sensor data has changed.
-| Params | []() | +| Param | Type | |--------|------| |x Strength|Number| |y Strength|Number| diff --git a/docs/components/sensors/near-field.md b/docs/components/sensors/near-field.md index 3695e0d02..092b962f3 100644 --- a/docs/components/sensors/near-field.md +++ b/docs/components/sensors/near-field.md @@ -26,7 +26,7 @@ Currently this is only a plain text tag, as specified in themanifest. See Compil
-| Params | []() | +| Param | Type | |--------|------| |tag ID|Text| |message|Text| diff --git a/docs/components/sensors/orientation-sensor.md b/docs/components/sensors/orientation-sensor.md index e8845105d..f31a82020 100644 --- a/docs/components/sensors/orientation-sensor.md +++ b/docs/components/sensors/orientation-sensor.md @@ -28,7 +28,7 @@ Azimuth is the compass heading in degrees, pitch indicates how the deviceis tilt
-| Params | []() | +| Param | Type | |--------|------| |azimuth|Number| |pitch|Number| diff --git a/docs/components/sensors/pedometer.md b/docs/components/sensors/pedometer.md index de00c9499..7f18c05b6 100644 --- a/docs/components/sensors/pedometer.md +++ b/docs/components/sensors/pedometer.md @@ -42,7 +42,7 @@ This event is run when a raw step is detected
-| Params | []() | +| Param | Type | |--------|------| |simple Steps|Number| |distance|Number| @@ -69,7 +69,7 @@ This event is run when a walking step is detected. A walking step is a step that
-| Params | []() | +| Param | Type | |--------|------| |walk Steps|Number| |distance|Number| diff --git a/docs/components/sensors/pressure-sensor.md b/docs/components/sensors/pressure-sensor.md index 2b9765dc7..b6667a9e1 100644 --- a/docs/components/sensors/pressure-sensor.md +++ b/docs/components/sensors/pressure-sensor.md @@ -18,7 +18,7 @@ Event is invoked when pressure is changed.
-| Params | []() | +| Param | Type | |--------|------| |pressure|Number| |altitude|Number| diff --git a/docs/components/sensors/proximity-sensor.md b/docs/components/sensors/proximity-sensor.md index 6b48b35ca..569948505 100644 --- a/docs/components/sensors/proximity-sensor.md +++ b/docs/components/sensors/proximity-sensor.md @@ -18,7 +18,7 @@ Triggered when distance (in cm) of the object to the device changes.
-| Params | []() | +| Param | Type | |--------|------| |distance|Number| diff --git a/docs/components/sensors/sound-sensor.md b/docs/components/sensors/sound-sensor.md index 76f326e57..02a32bb02 100644 --- a/docs/components/sensors/sound-sensor.md +++ b/docs/components/sensors/sound-sensor.md @@ -21,7 +21,7 @@ Triggered when the sound level has changed
-| Params | []() | +| Param | Type | |--------|------| |value|Number| diff --git a/docs/components/sensors/temperature-sensor.md b/docs/components/sensors/temperature-sensor.md index cc9d6f973..fb8bb3b44 100644 --- a/docs/components/sensors/temperature-sensor.md +++ b/docs/components/sensors/temperature-sensor.md @@ -18,7 +18,7 @@ Event that fires when the temperature is changed
-| Params | []() | +| Param | Type | |--------|------| |temperature|Number| diff --git a/docs/components/social/contact-picker.md b/docs/components/social/contact-picker.md index 65375d8da..1494c5fca 100644 --- a/docs/components/social/contact-picker.md +++ b/docs/components/social/contact-picker.md @@ -32,7 +32,7 @@ Event to be raised after the picker activity returns itsresult and the propertie
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -86,7 +86,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -99,7 +99,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -112,7 +112,7 @@ view a contact via its URI
-| Params | []() | +| Param | Type | |--------|------| |uri|Text| @@ -122,7 +122,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -136,7 +136,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -150,7 +150,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/social/email-picker.md b/docs/components/social/email-picker.md index c68601664..c835a0284 100644 --- a/docs/components/social/email-picker.md +++ b/docs/components/social/email-picker.md @@ -51,7 +51,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -64,7 +64,7 @@ Set the cursor to the given position.
-| Params | []() | +| Param | Type | |--------|------| |position|Number| @@ -80,7 +80,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| diff --git a/docs/components/social/onesignal-inapp-messages.md b/docs/components/social/onesignal-inapp-messages.md index 1d84d7192..cacb61547 100644 --- a/docs/components/social/onesignal-inapp-messages.md +++ b/docs/components/social/onesignal-inapp-messages.md @@ -45,7 +45,7 @@ Called when the message is clicked.
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| |action ID|Text| @@ -58,7 +58,7 @@ Called after an in-app message has been dismissed.
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| @@ -68,7 +68,7 @@ Called after an in-app message has finished displaying.
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| @@ -78,7 +78,7 @@ Called right before an in-app message is dismissed.
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| @@ -88,7 +88,7 @@ Called right before an in-app message is displayed.
-| Params | []() | +| Param | Type | |--------|------| |message ID|Text| @@ -100,7 +100,7 @@ Adds a new trigger with provided key-value pair for the current user.
-| Params | []() | +| Param | Type | |--------|------| |key|Text| |value|Text| @@ -111,7 +111,7 @@ Removes the trigger with provided key for the current user.
-| Params | []() | +| Param | Type | |--------|------| |key|Text| diff --git a/docs/components/social/onesignal-management.md b/docs/components/social/onesignal-management.md index a2a76ff45..ec53ecca3 100644 --- a/docs/components/social/onesignal-management.md +++ b/docs/components/social/onesignal-management.md @@ -22,7 +22,7 @@ Called when an error occurs.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -34,7 +34,7 @@ Adds a new alias. Aliases are alternative identifiers (like usernames or CRM IDs
-| Params | []() | +| Param | Type | |--------|------| |label|Text| |id|Text| @@ -45,7 +45,7 @@ Adds an email Subscription (email address) to the current user. Call AddEmail af
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -55,7 +55,7 @@ Adds an outcome with the provided name, captured against the current session. An
-| Params | []() | +| Param | Type | |--------|------| |outcome|Text| @@ -65,7 +65,7 @@ Adds an outcome with the provided name and value (number) captured against the c
-| Params | []() | +| Param | Type | |--------|------| |outcome|Text| |value|Number| @@ -76,7 +76,7 @@ Adds an SMS Subscription (phone number) to the current user. Requires E.164 form
-| Params | []() | +| Param | Type | |--------|------| |phone|Text| @@ -86,7 +86,7 @@ Adds a tag on the current user. Tags are custom key-value pairs of string data y
-| Params | []() | +| Param | Type | |--------|------| |key|Text| |value|Text| @@ -97,7 +97,7 @@ Adds a unique outcome with the provided name, captured against the current sessi
-| Params | []() | +| Param | Type | |--------|------| |outcome|Text| @@ -139,7 +139,7 @@ Sets the user context to the provided "externalId". Ensures that all subscriptio
-| Params | []() | +| Param | Type | |--------|------| |external ID|Text| @@ -155,7 +155,7 @@ Removes an alias.
-| Params | []() | +| Param | Type | |--------|------| |label|Text| @@ -165,7 +165,7 @@ Removes an email Subscription from the current user.
-| Params | []() | +| Param | Type | |--------|------| |email|Text| @@ -175,7 +175,7 @@ Removes an SMS Subscription from the current user.
-| Params | []() | +| Param | Type | |--------|------| |phone|Text| @@ -185,7 +185,7 @@ Removes a tag.
-| Params | []() | +| Param | Type | |--------|------| |key|Text| @@ -195,7 +195,7 @@ Grants or revokes user consent for data collection. Without consent, no data is
-| Params | []() | +| Param | Type | |--------|------| |given|Boolean| diff --git a/docs/components/social/onesignal-notifications.md b/docs/components/social/onesignal-notifications.md index a3de34e52..aa49ad291 100644 --- a/docs/components/social/onesignal-notifications.md +++ b/docs/components/social/onesignal-notifications.md @@ -45,7 +45,7 @@ Called when an error occurs.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -55,7 +55,7 @@ Called when the user clicks the notification.
-| Params | []() | +| Param | Type | |--------|------| |android Notification ID|Number| |from Project Number|Text| @@ -70,7 +70,7 @@ Called when the user accepts or declines the permission prompt, or enables or di
-| Params | []() | +| Param | Type | |--------|------| |granted|Boolean| @@ -80,7 +80,7 @@ Called when subscription state changes. This can happen when: 1. The device rece
-| Params | []() | +| Param | Type | |--------|------| |subscription Id|Text| |opted In|Boolean| @@ -136,7 +136,7 @@ Cancel all notifications in a specific group based on its group key.
-| Params | []() | +| Param | Type | |--------|------| |group Key|Text| @@ -146,7 +146,7 @@ Cancel a single notification based on its Android notification ID.
-| Params | []() | +| Param | Type | |--------|------| |android Notification ID|Number| @@ -156,7 +156,7 @@ Shows the native system prompt asking the user for push notification permission.
-| Params | []() | +| Param | Type | |--------|------| |fallback To Settings|Boolean| diff --git a/docs/components/social/phone-call.md b/docs/components/social/phone-call.md index 147d1cbc3..68155aa0c 100644 --- a/docs/components/social/phone-call.md +++ b/docs/components/social/phone-call.md @@ -27,7 +27,7 @@ Event indicating that an incoming phone call is answered. phoneNumber is the inc
-| Params | []() | +| Param | Type | |--------|------| |phone Number|Text| @@ -37,16 +37,16 @@ Event indicating that a phone call has ended. If status is 1, incoming call is m
-| Params | []() | +| Param | Type | |--------|------| |status|Number
EndedStatus| |phone Number|Text| -| status Options | []() | +| status Option | Value | |--------|------| -|IncomingRejected|Option for IncomingRejected| -|IncomingEnded|Option for IncomingEnded| -|OutgoingEnded|Option for OutgoingEnded| +|IncomingRejected|1| +|IncomingEnded|2| +|OutgoingEnded|3| ### Phone Call Started @@ -54,15 +54,15 @@ Event indicating that a phonecall has started. If status is 1, incoming call is
-| Params | []() | +| Param | Type | |--------|------| |status|Number
StartedStatus| |phone Number|Text| -| status Options | []() | +| status Option | Value | |--------|------| -|Incoming|Option for Incoming| -|Outgoing|Option for Outgoing| +|Incoming|1| +|Outgoing|2| ## Methods diff --git a/docs/components/social/phone-number-picker.md b/docs/components/social/phone-number-picker.md index eb888d8ab..bc9d48092 100644 --- a/docs/components/social/phone-number-picker.md +++ b/docs/components/social/phone-number-picker.md @@ -29,7 +29,7 @@ Event to be raised after the picker activity returns itsresult and the propertie
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -83,7 +83,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -96,7 +96,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -109,7 +109,7 @@ view a contact via its URI
-| Params | []() | +| Param | Type | |--------|------| |uri|Text| @@ -119,7 +119,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -133,7 +133,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -147,7 +147,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/social/sharing.md b/docs/components/social/sharing.md index f926aaf16..2d374697d 100644 --- a/docs/components/social/sharing.md +++ b/docs/components/social/sharing.md @@ -26,7 +26,7 @@ This event returns the social media name if an app is not installed. Possible na
-| Params | []() | +| Param | Type | |--------|------| |name|Text| @@ -38,7 +38,7 @@ Shares a file through any capable application installed on the phone by displayi
-| Params | []() | +| Param | Type | |--------|------| |file|Text| @@ -48,7 +48,7 @@ Shares both a file and a message through any capable application installed on th
-| Params | []() | +| Param | Type | |--------|------| |file|Text| |message|Text| @@ -59,7 +59,7 @@ Shares a message through any capable application installed on the phone by displ
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -69,7 +69,7 @@ Shares a message through the given app. If the given app is not installed, then
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |name|Text| @@ -81,7 +81,7 @@ Shares a message through Facebook. If Facebook is not installed, then the 'AppNo
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -91,7 +91,7 @@ Shares a message through Facebook Messenger. If Messenger is not installed, then
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -101,7 +101,7 @@ Shares a message through Google Plus. If Google+ is not installed, then the 'App
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -111,7 +111,7 @@ Shares a message through Snapchat. If Snapchat is not installed, then the 'AppNo
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -121,7 +121,7 @@ Shares a message through Telegram. If Telegram is not installed, then the 'AppNo
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -131,7 +131,7 @@ Shares a message through Twitter. If Twitter is not installed, then the 'AppNotF
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -141,7 +141,7 @@ Shares a message through WhatsApp. If WhatsApp is not installed, then the 'AppNo
-| Params | []() | +| Param | Type | |--------|------| |message|Text| diff --git a/docs/components/social/texting.md b/docs/components/social/texting.md index 488812c84..3b8bb3194 100644 --- a/docs/components/social/texting.md +++ b/docs/components/social/texting.md @@ -54,7 +54,7 @@ Event that's raised when a text message is received by the phone.
-| Params | []() | +| Param | Type | |--------|------| |number|Text| |message Text|Text| @@ -111,8 +111,8 @@ If set to 1 (OFF) no messages will be received. If set to 2 (FOREGROUND) or3 (AL
-| Options | []() | +| Option | Value | |--------|------| -|Off|Option for Off| -|Foreground|Option for Foreground| -|Always|Option for Always| +|Off|1| +|Foreground|2| +|Always|3| diff --git a/docs/components/social/twitter.md b/docs/components/social/twitter.md index 24fa0c012..72c7bba27 100644 --- a/docs/components/social/twitter.md +++ b/docs/components/social/twitter.md @@ -34,7 +34,7 @@ This event is raised when the recent messages requested through `` RequestDirect
-| Params | []() | +| Param | Type | |--------|------| |messages|List| @@ -44,7 +44,7 @@ This event is raised when all of the followers of the logged-in user requested t
-| Params | []() | +| Param | Type | |--------|------| |followers 2|List| @@ -54,7 +54,7 @@ This event is raised when the messages requested through `` RequestFriendTimelin
-| Params | []() | +| Param | Type | |--------|------| |timeline|List| @@ -70,7 +70,7 @@ This event is raised when the mentions of the logged-in user requested through `
-| Params | []() | +| Param | Type | |--------|------| |mentions|List| @@ -80,7 +80,7 @@ This event is raised when the results of the search requested through `` SearchS
-| Params | []() | +| Param | Type | |--------|------| |search Results|List| @@ -112,7 +112,7 @@ This sends a direct (private) message to the specified user. The message will be
-| Params | []() | +| Param | Type | |--------|------| |user|Text| |message|Text| @@ -123,7 +123,7 @@ Starts following a user.
-| Params | []() | +| Param | Type | |--------|------| |user|Text| @@ -133,7 +133,7 @@ Twitter's API no longer supports login via username and password. Use the Author
-| Params | []() | +| Param | Type | |--------|------| |username|Text| |password|Text| @@ -174,7 +174,7 @@ This searches Twitter for the given String query.
-| Params | []() | +| Param | Type | |--------|------| |query|Text| @@ -184,7 +184,7 @@ Stops following a user.
-| Params | []() | +| Param | Type | |--------|------| |user|Text| @@ -196,7 +196,7 @@ This sends a tweet as the logged-in user with the specified Text, which will be
-| Params | []() | +| Param | Type | |--------|------| |status|Text| @@ -208,7 +208,7 @@ This sends a tweet as the logged-in user with the specified Text and a path to t
-| Params | []() | +| Param | Type | |--------|------| |status|Text| |image Path|Text| diff --git a/docs/components/storage/cloudinary.md b/docs/components/storage/cloudinary.md index a6e6b5dac..4d53a1836 100644 --- a/docs/components/storage/cloudinary.md +++ b/docs/components/storage/cloudinary.md @@ -25,7 +25,7 @@ Event raised after the Upload Media block has been used
-| Params | []() | +| Param | Type | |--------|------| |response Content|Text| |url|Text| @@ -38,7 +38,7 @@ Uploads the specified media file to your Cloudinary media library.
-| Params | []() | +| Param | Type | |--------|------| |path|Text| diff --git a/docs/components/storage/file.md b/docs/components/storage/file.md index e7b1fbb6b..7ca8336d3 100644 --- a/docs/components/storage/file.md +++ b/docs/components/storage/file.md @@ -18,7 +18,7 @@ Event indicating that the contents of the file have been written.
-| Params | []() | +| Param | Type | |--------|------| |file Name|Text| @@ -42,7 +42,7 @@ Event indicating that there was a directory created. The return value is 'true'
-| Params | []() | +| Param | Type | |--------|------| |is Directory Created|Boolean| @@ -52,7 +52,7 @@ Event indicating that the contents from the file have been read.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| @@ -62,7 +62,7 @@ Event indicating that there was any failure on zip or unzip a file.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -74,7 +74,7 @@ Appends text to the end of a file storage, creating the file if it does not exis
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |file Name|Text| @@ -87,7 +87,7 @@ Copy a file. If input path started with two // (slashes) then it's a asset file.
-| Params | []() | +| Param | Type | |--------|------| |input|Text| |output|Text| @@ -100,30 +100,30 @@ Copy the contents from the first file to the second file.
-| Params | []() | +| Param | Type | |--------|------| |from Scope|Text
FileScope| |from File Name|Text| |to Scope|Text
FileScope| |to File Name|Text| -| from Scope Options | []() | +| from Scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| -| to Scope Options | []() | +| to Scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Create Directory @@ -133,7 +133,7 @@ Create a new directory. Use MakeDirectory instead.
-| Params | []() | +| Param | Type | |--------|------| |directory|Text| @@ -143,7 +143,7 @@ Deletes a file from storage. Prefix the filename with / to delete a specific fil
-| Params | []() | +| Param | Type | |--------|------| |file Name|Text| @@ -155,19 +155,19 @@ Tests whether the path exists in the given scope.
-| Params | []() | +| Param | Type | |--------|------| |scope|Text
FileScope| |path|Text| -| scope Options | []() | +| scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### File Size @@ -177,7 +177,7 @@ Get file size
-| Params | []() | +| Param | Type | |--------|------| |file|Text| @@ -189,7 +189,7 @@ Get file name
-| Params | []() | +| Param | Type | |--------|------| |file|Text| @@ -201,7 +201,7 @@ Get Free Space
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -213,7 +213,7 @@ Get total space
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -225,19 +225,19 @@ Tests whether the path named in the given scope is a directory.
-| Params | []() | +| Param | Type | |--------|------| |scope|Text
FileScope| |path|Text| -| scope Options | []() | +| scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Is File @@ -247,7 +247,7 @@ Check whether the path is a file
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -259,19 +259,19 @@ Get a list of files and directories in the given directory.
-| Params | []() | +| Param | Type | |--------|------| |scope|Text
FileScope| |directory Name|Text| -| scope Options | []() | +| scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Make Directory @@ -281,19 +281,19 @@ Create a new directory for storing files. The semantics of this method are such
-| Params | []() | +| Param | Type | |--------|------| |scope|Text
FileScope| |directory Name|Text| -| scope Options | []() | +| scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Make Full Path @@ -303,19 +303,19 @@ Converts the scope and path into a single string for other components.
-| Params | []() | +| Param | Type | |--------|------| |scope|Text
FileScope| |path|Text| -| scope Options | []() | +| scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Move @@ -327,7 +327,7 @@ Move a file. You can not move asset files. Use MoveFile instead.
-| Params | []() | +| Param | Type | |--------|------| |input|Text| |output|Text| @@ -340,30 +340,30 @@ Move a file from one location to another.
-| Params | []() | +| Param | Type | |--------|------| |from Scope|Text
FileScope| |from File Name|Text| |to Scope|Text
FileScope| |to File Name|Text| -| from Scope Options | []() | +| from Scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| -| to Scope Options | []() | +| to Scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Read From @@ -371,7 +371,7 @@ Reads text from a file in storage. Prefix the filename with / to read from a spe
-| Params | []() | +| Param | Type | |--------|------| |file Name|Text| @@ -383,20 +383,20 @@ Remove a directory from the file system. If recursive is true, then everything i
-| Params | []() | +| Param | Type | |--------|------| |scope|Text
FileScope| |directory Name|Text| |recursive|Boolean| -| scope Options | []() | +| scope Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Save File @@ -405,7 +405,7 @@ If you want to add content to a file use the append block.
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |file Name|Text| @@ -416,7 +416,7 @@ Unzip a file with or without a password. If you dont need a passwort then let it
-| Params | []() | +| Param | Type | |--------|------| |target Zip File Path|Text| |destination Folder Path|Text| @@ -428,7 +428,7 @@ Create a zip file with or without a password.
-| Params | []() | +| Param | Type | |--------|------| |target Path|Text| |destination File Path|Text| @@ -442,14 +442,14 @@ Create a zip file with or without a password. Specifies the default scope for files accessed using the File component. The App scope shouldwork for most apps. Legacy mode can be used for apps that predate the newer constraints inAndroid on app file access. -| Options | []() | +| Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Read Permission @@ -466,14 +466,14 @@ Indicates the current scope for operations such as ReadFrom and SaveFile.
-| Options | []() | +| Option | Value | |--------|------| -|App|Option for App| -|Asset|Option for Asset| -|Cache|Option for Cache| -|Legacy|Option for Legacy| -|Private|Option for Private| -|Shared|Option for Shared| +|App|App| +|Asset|Asset| +|Cache|Cache| +|Legacy|Legacy| +|Private|Private| +|Shared|Shared| ### Write Permission diff --git a/docs/components/storage/spreadsheet.md b/docs/components/storage/spreadsheet.md index 3056ae0bb..307e49bb4 100644 --- a/docs/components/storage/spreadsheet.md +++ b/docs/components/storage/spreadsheet.md @@ -22,7 +22,7 @@ Triggered when changing cell data. ResponseCode is a number
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| @@ -32,7 +32,7 @@ Triggered when destroying a row. ResponseCode is a number
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| @@ -42,7 +42,7 @@ Triggered when getting all rows. ResponseCode is a number, ResponseContent is a
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| |response Content|Text| @@ -54,7 +54,7 @@ Triggered when receiving cell data. ResponseCode is a number, the other ones are
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| |value|Text| @@ -67,7 +67,7 @@ Triggered when receiving column data. ResponseCode is a number, the other ones a
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| |values|List| @@ -80,7 +80,7 @@ Triggered when receiving row data. ResponseCode is a number, Values is a list
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| |values|List| @@ -91,7 +91,7 @@ Triggered when creating a row. ResponseCode is a number
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| @@ -101,7 +101,7 @@ Triggered when updating a row. ResponseCode is a number
-| Params | []() | +| Param | Type | |--------|------| |response Code|Number| @@ -113,7 +113,7 @@ Creates a new row
-| Params | []() | +| Param | Type | |--------|------| |column Names|List| |values|List| @@ -124,7 +124,7 @@ Deletes the given row
-| Params | []() | +| Param | Type | |--------|------| |row Number|Number| @@ -140,7 +140,7 @@ Gets cell data
-| Params | []() | +| Param | Type | |--------|------| |row Number|Number| |column Name|Text| @@ -151,7 +151,7 @@ Gets column data
-| Params | []() | +| Param | Type | |--------|------| |column Name|Text| |max Record|Number| @@ -162,7 +162,7 @@ Gets row data
-| Params | []() | +| Param | Type | |--------|------| |row Number|Number| @@ -172,7 +172,7 @@ Changes the value of a cell
-| Params | []() | +| Param | Type | |--------|------| |row Number|Number| |column Name|Text| @@ -184,7 +184,7 @@ Updates the given row data
-| Params | []() | +| Param | Type | |--------|------| |row Number|Number| |column Names|List| diff --git a/docs/components/storage/sqlite.md b/docs/components/storage/sqlite.md index 6916e5123..5f1ec5deb 100644 --- a/docs/components/storage/sqlite.md +++ b/docs/components/storage/sqlite.md @@ -19,7 +19,7 @@ Event handler after the SQL statement is executed, returns whether the execution
-| Params | []() | +| Param | Type | |--------|------| |was Executed|Boolean| @@ -29,7 +29,7 @@ Event handler after the RawQuery or Query is executed and returns a list with th
-| Params | []() | +| Param | Type | |--------|------| |result|List| |number Of Records|Number| @@ -40,7 +40,7 @@ Event handler when an error ocurred, returns a string with a message from the er
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -60,7 +60,7 @@ Executes pre-compiled DELETE statement with specified parameters. Parameters: 1)
-| Params | []() | +| Param | Type | |--------|------| |table|Text| |where Clause|Text| @@ -82,7 +82,7 @@ Used to drop / delete table from database. Please note that this event will DELE
-| Params | []() | +| Param | Type | |--------|------| |table Nme|Text| @@ -102,7 +102,7 @@ Executes pre-compiled INSERT statement with specified parameters. Parameters: 1)
-| Params | []() | +| Param | Type | |--------|------| |table|Text| |columns|List| @@ -114,7 +114,7 @@ Execute Multiple SQL Statement asynchronously and returns whether the transactio
-| Params | []() | +| Param | Type | |--------|------| |list|List| @@ -124,7 +124,7 @@ Executes pre-compiled QUERY statement with specified parameters. Parameters: 1)
-| Params | []() | +| Param | Type | |--------|------| |table|Text| |columns|List| @@ -141,7 +141,7 @@ Executes the provided rawQuery Statement asynchronously. Returns a YailList with
-| Params | []() | +| Param | Type | |--------|------| |sql|Text| |selection Args|List| @@ -154,7 +154,7 @@ Executes pre-compiled REPLACE OR INSERT INTO statement with specified parameters
-| Params | []() | +| Param | Type | |--------|------| |table|Text| |columns|List| @@ -166,7 +166,7 @@ Execute a Single SQL Statement asynchronously and returns whether the transactio
-| Params | []() | +| Param | Type | |--------|------| |sql|Text| @@ -178,7 +178,7 @@ Used to run any valid SQLite query and return results in same block.
-| Params | []() | +| Param | Type | |--------|------| |query|Text| @@ -190,7 +190,7 @@ Executes pre-compiled UPDATE statement with specified parameters. Parameters: 1)
-| Params | []() | +| Param | Type | |--------|------| |table|Text| |columns|List| diff --git a/docs/components/storage/supabase-database.md b/docs/components/storage/supabase-database.md index 91888c4ad..77222e402 100644 --- a/docs/components/storage/supabase-database.md +++ b/docs/components/storage/supabase-database.md @@ -22,7 +22,7 @@ Fired when any operation fails
-| Params | []() | +| Param | Type | |--------|------| |operation|Text| |status Code|Number| @@ -34,7 +34,7 @@ Fired after a successful RPC function call
-| Params | []() | +| Param | Type | |--------|------| |result|Any| @@ -44,7 +44,7 @@ Fired after a Select or RawQuery with the resulting rows
-| Params | []() | +| Param | Type | |--------|------| |rows|List| |operation|Text| @@ -55,7 +55,7 @@ Fired after a successful Insert with the returned row
-| Params | []() | +| Param | Type | |--------|------| |row|Dictionary| @@ -65,7 +65,7 @@ Fired after a successful Delete with deleted rows
-| Params | []() | +| Param | Type | |--------|------| |rows|List| |count|Number| @@ -76,7 +76,7 @@ Fired after a successful BulkInsert with the returned rows
-| Params | []() | +| Param | Type | |--------|------| |rows|List| @@ -86,7 +86,7 @@ Fired after a successful Update with affected rows
-| Params | []() | +| Param | Type | |--------|------| |rows|List| |count|Number| @@ -99,7 +99,7 @@ Add a PostgREST filter. Operators: eq, neq, gt, gte, lt, lte, like, ilike, is, i
-| Params | []() | +| Param | Type | |--------|------| |column|Text| |operator|Text| @@ -111,7 +111,7 @@ Insert multiple rows into the table
-| Params | []() | +| Param | Type | |--------|------| |data|List| @@ -121,7 +121,7 @@ Call a Supabase database function (RPC)
-| Params | []() | +| Param | Type | |--------|------| |function Name|Text| |params|Dictionary| @@ -144,7 +144,7 @@ Insert a new row into the table
-| Params | []() | +| Param | Type | |--------|------| |data|Dictionary| @@ -154,7 +154,7 @@ Execute a raw query with custom PostgREST query parameters
-| Params | []() | +| Param | Type | |--------|------| |table|Text| |query String|Text| @@ -171,7 +171,7 @@ Set which columns to return (comma-separated)
-| Params | []() | +| Param | Type | |--------|------| |columns|Text| @@ -181,7 +181,7 @@ Set the maximum number of rows to return
-| Params | []() | +| Param | Type | |--------|------| |limit|Number| @@ -191,7 +191,7 @@ Set the number of rows to skip (for pagination)
-| Params | []() | +| Param | Type | |--------|------| |offset|Number| @@ -201,7 +201,7 @@ Set the ordering for results
-| Params | []() | +| Param | Type | |--------|------| |column|Text| |ascending|Boolean| @@ -212,7 +212,7 @@ Set the target table for the next operation
-| Params | []() | +| Param | Type | |--------|------| |table|Text| @@ -222,7 +222,7 @@ Update rows matching the current filters. Requires at least one filter to preven
-| Params | []() | +| Param | Type | |--------|------| |data|Dictionary| diff --git a/docs/components/storage/supabase-storage.md b/docs/components/storage/supabase-storage.md index 58b1a6d33..c8a4aeca1 100644 --- a/docs/components/storage/supabase-storage.md +++ b/docs/components/storage/supabase-storage.md @@ -22,7 +22,7 @@ Fired when any operation fails
-| Params | []() | +| Param | Type | |--------|------| |operation|Text| |status Code|Number| @@ -34,7 +34,7 @@ Fired when a file is deleted successfully
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -44,7 +44,7 @@ Fired when a file download completes successfully
-| Params | []() | +| Param | Type | |--------|------| |path|Text| |local Path|Text| @@ -55,7 +55,7 @@ Fired when a file upload completes successfully
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -65,7 +65,7 @@ Fired when a file listing is retrieved
-| Params | []() | +| Param | Type | |--------|------| |files|List| @@ -75,7 +75,7 @@ Fired when a signed URL is created
-| Params | []() | +| Param | Type | |--------|------| |url|Text| |path|Text| @@ -88,7 +88,7 @@ Create a time-limited signed URL for a private file
-| Params | []() | +| Param | Type | |--------|------| |path|Text| |expires In|Number| @@ -99,7 +99,7 @@ Delete a file from Supabase Storage
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -109,7 +109,7 @@ Download a file from Supabase Storage and save it locally
-| Params | []() | +| Param | Type | |--------|------| |path|Text| |save To|Text| @@ -122,7 +122,7 @@ Get the public URL for a file. This is synchronous (no network call).
-| Params | []() | +| Param | Type | |--------|------| |path|Text| @@ -132,7 +132,7 @@ List files in the bucket with an optional path prefix
-| Params | []() | +| Param | Type | |--------|------| |prefix|Text| @@ -142,7 +142,7 @@ Upload a file to Supabase Storage. Creates or overwrites the file. Accepts plain
-| Params | []() | +| Param | Type | |--------|------| |path|Text| |file Path|Text| diff --git a/docs/components/storage/tiny-db.md b/docs/components/storage/tiny-db.md index 4a25f0fde..2a2382ad0 100644 --- a/docs/components/storage/tiny-db.md +++ b/docs/components/storage/tiny-db.md @@ -34,7 +34,7 @@ Clear the entry with the given tag
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -62,7 +62,7 @@ Retrieve the value stored under the given tag. If there's no such tag, then retu
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value If Tag Not There|Any| @@ -73,7 +73,7 @@ Store the given value under the given tag. The storage persists on thephone when
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value To Store|Any| diff --git a/docs/components/storage/tiny-web-db.md b/docs/components/storage/tiny-web-db.md index ef3f0eec6..b8f02ae18 100644 --- a/docs/components/storage/tiny-web-db.md +++ b/docs/components/storage/tiny-web-db.md @@ -21,7 +21,7 @@ Indicates that a GetValue server request has succeeded.
-| Params | []() | +| Param | Type | |--------|------| |tag From Web DB|Text| |value From Web DB|Any| @@ -38,7 +38,7 @@ Indicates that the communication with the Web service signaled an error.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -50,7 +50,7 @@ GetValue asks the Web service to get the value stored under the given tag.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| @@ -60,7 +60,7 @@ Asks the Web service to store the given value under the given tag.
-| Params | []() | +| Param | Type | |--------|------| |tag|Text| |value To Store|Any| diff --git a/docs/components/user-interface/button.md b/docs/components/user-interface/button.md index 5f2ada992..ed2c7691b 100644 --- a/docs/components/user-interface/button.md +++ b/docs/components/user-interface/button.md @@ -63,7 +63,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -76,7 +76,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -89,7 +89,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -103,7 +103,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -117,7 +117,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/user-interface/checkbox.md b/docs/components/user-interface/checkbox.md index e3eaac70d..d3a69ffcc 100644 --- a/docs/components/user-interface/checkbox.md +++ b/docs/components/user-interface/checkbox.md @@ -42,7 +42,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| diff --git a/docs/components/user-interface/date-picker.md b/docs/components/user-interface/date-picker.md index bad58edad..7a36f0f21 100644 --- a/docs/components/user-interface/date-picker.md +++ b/docs/components/user-interface/date-picker.md @@ -63,7 +63,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -77,7 +77,7 @@ Valid values for the month field are 1-12 and 1-31 for the day field.
-| Params | []() | +| Param | Type | |--------|------| |year|Number| |month|Number| @@ -89,7 +89,7 @@ Allows the user to set the date from the instant to be displayed when the date p
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -99,7 +99,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -112,7 +112,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -126,7 +126,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -140,7 +140,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/user-interface/label.md b/docs/components/user-interface/label.md index a24009975..441c3afbd 100644 --- a/docs/components/user-interface/label.md +++ b/docs/components/user-interface/label.md @@ -30,7 +30,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -43,7 +43,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| diff --git a/docs/components/user-interface/linear-progressbar.md b/docs/components/user-interface/linear-progressbar.md index 8389281d8..937746fef 100644 --- a/docs/components/user-interface/linear-progressbar.md +++ b/docs/components/user-interface/linear-progressbar.md @@ -16,7 +16,7 @@ Event that indicates that the progress of the progress bar has been changed. Ret
-| Params | []() | +| Param | Type | |--------|------| |progress|Number| @@ -28,7 +28,7 @@ Increase the progress bar's progress by the specified amount.
-| Params | []() | +| Param | Type | |--------|------| |value|Number| diff --git a/docs/components/user-interface/list-picker.md b/docs/components/user-interface/list-picker.md index 80cc365c7..e3402bc97 100644 --- a/docs/components/user-interface/list-picker.md +++ b/docs/components/user-interface/list-picker.md @@ -21,7 +21,7 @@ Event to be raised after the picker activity returns itsresult and the propertie
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -75,7 +75,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -88,7 +88,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -101,7 +101,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -115,7 +115,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -129,7 +129,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/user-interface/notifier.md b/docs/components/user-interface/notifier.md index 55b799e15..8cbfbe3f9 100644 --- a/docs/components/user-interface/notifier.md +++ b/docs/components/user-interface/notifier.md @@ -25,7 +25,7 @@ Event to detect that a user have done his selection.
-| Params | []() | +| Param | Type | |--------|------| |choice|Text| @@ -35,7 +35,7 @@ Event to detect that a user clicked on a button from the "Show Custom Message Di
-| Params | []() | +| Param | Type | |--------|------| |title|Text| @@ -45,7 +45,7 @@ Event to detect that a user have done his text input in the "Show Text Dialog".
-| Params | []() | +| Param | Type | |--------|------| |response|Text| @@ -55,7 +55,7 @@ Invoked after user has finished selecting items from the Checkbox picker. Return
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |selection|List| @@ -66,7 +66,7 @@ Event to detect that the user has pressed a button from the custom dialog. It re
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| @@ -76,7 +76,7 @@ Event to detect that a user have done his selection in the CustomChooseDialog.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |choice|Text| @@ -87,7 +87,7 @@ Event to detect that a user have done his text input in the "Show Text Input Dia
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |response|Text| @@ -98,7 +98,7 @@ Event to detect that the user has watched the image dialog.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -108,7 +108,7 @@ Event to detect that a user have closed the Lightbox.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| @@ -124,7 +124,7 @@ Event to get the picked list selection from the List Picker.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |item|Text| @@ -135,7 +135,7 @@ Event to detect that the user has selected a number from the number picker dialo
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |selection|Number| @@ -146,7 +146,7 @@ Event invoked when user has selected an option from the radio button picker. Out
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |list Index|Number| @@ -157,7 +157,7 @@ Event to detect that the user has selected a word from the word picker dialog.
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |selection|Text| @@ -170,7 +170,7 @@ Show whatever you want in a dialog. You can use as example arrangements, or imag
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |title|Text| @@ -184,7 +184,7 @@ Shows a dialog box with two buttons, from which the user can choose. If cancelab
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |message|Text| @@ -202,7 +202,7 @@ Show a Message Dialog. You can use the "Light Theme" property to have a light or
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -240,7 +240,7 @@ Writes an error message to the Android system log. See the Google Android docume
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -250,7 +250,7 @@ Writes an information message to the Android log.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -260,7 +260,7 @@ Writes a warning message to the Android log. See the Google Android documentatio
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -270,7 +270,7 @@ Show a alert "toast" message.
-| Params | []() | +| Param | Type | |--------|------| |notice|Text| @@ -280,7 +280,7 @@ Shows a picker dialog with a list of options of whichmore than one can be chosen
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -297,7 +297,7 @@ Shows a dialog box with two buttons, from which the user can choose. If cancelab
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -317,7 +317,7 @@ Show a image dialog. Animation types like "*.gif" are not supported. You can use
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -330,7 +330,7 @@ Displays a lightbox. You can use images like "*.png" or "*,gif" from assets fold
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |image|Text| @@ -341,7 +341,7 @@ Shows a progress dialog with a horizontal progress bar. Can be dismissed by user
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -356,7 +356,7 @@ Shows a list picker dialog. You can use the "Light Theme" property to have a lig
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -370,7 +370,7 @@ Show a Message Dialog.
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -382,7 +382,7 @@ Shows a number picker dialog that enables the user to select a number from a pre
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -398,7 +398,7 @@ Shows a dialog box where the user can enter password (input is masked), after wh
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -410,7 +410,7 @@ Shows a dialog box with an optional title and message (use empty strings if they
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -421,7 +421,7 @@ Shows a radio list dialog with a list of options of which only one can be chosen
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -439,7 +439,7 @@ Shows a spinning progress dialog which can be dismissed by the user if 'cancelab
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -452,7 +452,7 @@ Shows a dialog box where the user can enter text, after which the AfterTextInput
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |title|Text| @@ -464,7 +464,7 @@ Show a text input dialog. Possible input types are: "1= Normal text", "2= Passwo
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -485,7 +485,7 @@ Shows a word picker dialog that enables the user to select a number from a prede
-| Params | []() | +| Param | Type | |--------|------| |id|Number| |title|Text| @@ -499,7 +499,7 @@ Change the current value of the linear progress dialog. Has no effect if "indete
-| Params | []() | +| Param | Type | |--------|------| |value|Number| diff --git a/docs/components/user-interface/radio-button.md b/docs/components/user-interface/radio-button.md index 2e1f45160..77b726410 100644 --- a/docs/components/user-interface/radio-button.md +++ b/docs/components/user-interface/radio-button.md @@ -16,7 +16,7 @@ Event invoked when the radio button state has been changed.
-| Params | []() | +| Param | Type | |--------|------| |checked|Boolean| diff --git a/docs/components/user-interface/rating-bar.md b/docs/components/user-interface/rating-bar.md index 11153c63b..ca2145f97 100644 --- a/docs/components/user-interface/rating-bar.md +++ b/docs/components/user-interface/rating-bar.md @@ -16,7 +16,7 @@ Event invoked when the rating has been changed.
-| Params | []() | +| Param | Type | |--------|------| |rating|Number| diff --git a/docs/components/user-interface/slider.md b/docs/components/user-interface/slider.md index b38729663..f590d5f53 100644 --- a/docs/components/user-interface/slider.md +++ b/docs/components/user-interface/slider.md @@ -16,7 +16,7 @@ Indicates that position of the slider thumb has changed.
-| Params | []() | +| Param | Type | |--------|------| |thumb Position|Number| diff --git a/docs/components/user-interface/snackbar.md b/docs/components/user-interface/snackbar.md index 6a55bd110..a842c025d 100644 --- a/docs/components/user-interface/snackbar.md +++ b/docs/components/user-interface/snackbar.md @@ -24,7 +24,7 @@ Event to detect the snackbar was dismissed. Possible results can be: "UNDEFINED"
-| Params | []() | +| Param | Type | |--------|------| |event|Text| @@ -56,7 +56,7 @@ Show Snackbar (message supports HTML formatting)
-| Params | []() | +| Param | Type | |--------|------| |message|Text| @@ -66,7 +66,7 @@ Show Snackbar with action button (message supports HTML formatting)
-| Params | []() | +| Param | Type | |--------|------| |message|Text| |button Text|Text| diff --git a/docs/components/user-interface/spinner.md b/docs/components/user-interface/spinner.md index e34fb2e9a..a58649d8f 100644 --- a/docs/components/user-interface/spinner.md +++ b/docs/components/user-interface/spinner.md @@ -16,7 +16,7 @@ Event called after the user selects an item from the dropdown list.
-| Params | []() | +| Param | Type | |--------|------| |selection|Text| diff --git a/docs/components/user-interface/spotlight.md b/docs/components/user-interface/spotlight.md index ad610297f..ab7adfae9 100644 --- a/docs/components/user-interface/spotlight.md +++ b/docs/components/user-interface/spotlight.md @@ -32,7 +32,7 @@ Use this block to show the spotlight on a floating action button.
-| Params | []() | +| Param | Type | |--------|------| |floating Action Button|Component| diff --git a/docs/components/user-interface/state-progress-bar.md b/docs/components/user-interface/state-progress-bar.md index 11bfcf1b0..7b07e1984 100644 --- a/docs/components/user-interface/state-progress-bar.md +++ b/docs/components/user-interface/state-progress-bar.md @@ -16,7 +16,7 @@ Event invoked when a error occurred.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -26,7 +26,7 @@ Event invoked when a state item was clicked.
-| Params | []() | +| Param | Type | |--------|------| |state Number|Number| |is Current State|Boolean| diff --git a/docs/components/user-interface/switch.md b/docs/components/user-interface/switch.md index 910b35a61..5ba712b3c 100644 --- a/docs/components/user-interface/switch.md +++ b/docs/components/user-interface/switch.md @@ -16,7 +16,7 @@ Event invoked when a switch has been clicked. Returns true or false if the switc
-| Params | []() | +| Param | Type | |--------|------| |is Checked|Boolean| @@ -28,7 +28,7 @@ Set the drawable used for the switch 'thumb' - the piece that the user can physi
-| Params | []() | +| Param | Type | |--------|------| |image|Text| @@ -38,7 +38,7 @@ Set the drawable used for the switch 'thumb' - the piece that the user can physi
-| Params | []() | +| Param | Type | |--------|------| |icon Name|Text| |size|Number| diff --git a/docs/components/user-interface/text-box.md b/docs/components/user-interface/text-box.md index 8f486472c..cab1356a7 100644 --- a/docs/components/user-interface/text-box.md +++ b/docs/components/user-interface/text-box.md @@ -58,7 +58,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -71,7 +71,7 @@ Set the cursor to the given position.
-| Params | []() | +| Param | Type | |--------|------| |position|Number| @@ -87,7 +87,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| diff --git a/docs/components/user-interface/time-picker.md b/docs/components/user-interface/time-picker.md index c3e3f8ad7..67b846e32 100644 --- a/docs/components/user-interface/time-picker.md +++ b/docs/components/user-interface/time-picker.md @@ -63,7 +63,7 @@ Allows you to set animation style. Valid (case-insensitive) values are: ChasingD
-| Params | []() | +| Param | Type | |--------|------| |style|Text| |position|Text| @@ -76,7 +76,7 @@ Place a blurred shadow of text underneath the text, drawn with the specified x,
-| Params | []() | +| Param | Type | |--------|------| |x|Number| |y|Number| @@ -89,7 +89,7 @@ Set the time to be shown in the Time Picker popup. Current time is shown by defa
-| Params | []() | +| Param | Type | |--------|------| |hour|Number| |minute|Number| @@ -100,7 +100,7 @@ Set the time from the instant to be shown in the Time Picker popup. Current time
-| Params | []() | +| Param | Type | |--------|------| |instant|Instantintime| @@ -110,7 +110,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -124,7 +124,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |icon Name|Text| @@ -138,7 +138,7 @@ Show an image on the given position near to the button. You can use following wo
-| Params | []() | +| Param | Type | |--------|------| |position|Text| |picture|Text| diff --git a/docs/components/utilities/animation-utilities.md b/docs/components/utilities/animation-utilities.md index f6935734a..915ab7f44 100644 --- a/docs/components/utilities/animation-utilities.md +++ b/docs/components/utilities/animation-utilities.md @@ -18,7 +18,7 @@ This event is triggered when there was a error catched. Possible values for the
-| Params | []() | +| Param | Type | |--------|------| |error Code|Number| |error Message|Text| @@ -32,7 +32,7 @@ Start a horizontal bounce animation. The duration is set in millisecond. Use as
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |start Position|Number| @@ -45,7 +45,7 @@ Start a vertical bounce animation. The duration is set in millisecond. Use as ex
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |start Position|Number| @@ -60,7 +60,7 @@ Returns the bottom position of a component. It will return '-9999' if there was
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -72,7 +72,7 @@ Returns the left position of a component. It will return '-9999' if there was a
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -84,7 +84,7 @@ Returns the right position of a component. It will return '-9999' if there was a
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -96,7 +96,7 @@ Returns the top position of a component. It will return '-9999' if there was a e
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -108,7 +108,7 @@ Returns the x position of a component. It will return '-9999' if there was a err
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -120,7 +120,7 @@ Returns the y position of a component. It will return '-9999' if there was a err
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -130,7 +130,7 @@ Start a horizontal overshoot animation. If 'tension' is set to 0 you will not se
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |start Position|Number| @@ -144,7 +144,7 @@ Start a vertical overshoot animation. If 'tension' is set to 0 you will not see
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |start Position|Number| @@ -158,7 +158,7 @@ Start a rotation on any component. Use as example in 'rotation Start Degrees' 0,
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |rotation Start Degrees|Number| @@ -171,7 +171,7 @@ Start a zoom animation. 'tension' is set to 0 you will not see a overshoot anima
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |start Scale|Number| diff --git a/docs/components/utilities/audio.md b/docs/components/utilities/audio.md index a7028350f..008ac831b 100644 --- a/docs/components/utilities/audio.md +++ b/docs/components/utilities/audio.md @@ -21,7 +21,7 @@ Event triggered when a error occurred.
-| Params | []() | +| Param | Type | |--------|------| |error Message|Text| @@ -35,7 +35,7 @@ Returns true whether a component should have sound effects enabled for events su
-| Params | []() | +| Param | Type | |--------|------| |component|Component| @@ -63,7 +63,7 @@ Set whether a component should have sound effects enabled for events such as cli
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |enabled|Boolean| diff --git a/docs/components/utilities/battery-utilities.md b/docs/components/utilities/battery-utilities.md index d1a93bf41..9dd9a8e32 100644 --- a/docs/components/utilities/battery-utilities.md +++ b/docs/components/utilities/battery-utilities.md @@ -20,7 +20,7 @@ Returns a list showing battery info for the specified key. Key can be: HEALTH, L
-| Params | []() | +| Param | Type | |--------|------| |key|Text| diff --git a/docs/components/utilities/color-utilities.md b/docs/components/utilities/color-utilities.md index 6cf1289b5..ec7604112 100644 --- a/docs/components/utilities/color-utilities.md +++ b/docs/components/utilities/color-utilities.md @@ -20,7 +20,7 @@ Convert a hex color to a integer color. The result is returned as integer.
-| Params | []() | +| Param | Type | |--------|------| |hex Color|Text| @@ -32,7 +32,7 @@ Convert a integer color to a hex color. The result is returned as string.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| @@ -44,7 +44,7 @@ Returns the luminance of a color as a float between 0.0 and 1.0. The result is r
-| Params | []() | +| Param | Type | |--------|------| |color|Number| @@ -56,7 +56,7 @@ Returns true if the color is dark, else it returns false, means the color is lig
-| Params | []() | +| Param | Type | |--------|------| |color|Number| @@ -68,7 +68,7 @@ Set a alpha value to a color. The result is returned as integer.
-| Params | []() | +| Param | Type | |--------|------| |color|Number| |alpha|Number| diff --git a/docs/components/utilities/cryptography.md b/docs/components/utilities/cryptography.md index b5fd2d6ef..f86856d86 100644 --- a/docs/components/utilities/cryptography.md +++ b/docs/components/utilities/cryptography.md @@ -20,7 +20,7 @@ Decodes the given hash using the given key through AES-128. If any exception occ
-| Params | []() | +| Param | Type | |--------|------| |AES-128 Hash|Text| @@ -32,7 +32,7 @@ Encodes the given string using the given key through AES-128. If any exception o
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -44,7 +44,7 @@ Decodes the given hash using the given key through AES-256. If there are any exc
-| Params | []() | +| Param | Type | |--------|------| |AES-256 Hash|Text| @@ -56,7 +56,7 @@ Encodes the given string using the given key through AES-256. If there are any e
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -68,7 +68,7 @@ Decodes the given hash using Base64
-| Params | []() | +| Param | Type | |--------|------| |base64 Hash|Text| @@ -80,7 +80,7 @@ Encodes the given string using Base64
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -92,7 +92,7 @@ Generates a hash using BCrypt
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| |salt|Text| @@ -113,7 +113,7 @@ Verifies if the input password is the same one as the correct hashed password us
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| |correct Hash|Text| @@ -126,7 +126,7 @@ Encrypts or decrypts the given string simulating an Enigma machine. Rotors can g
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| |rotor 1|Number| @@ -159,7 +159,7 @@ Generates a MD5 hash
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -171,7 +171,7 @@ Generates a hash using PBKDF2
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -183,7 +183,7 @@ Verifies if the input password is the same one as the correct hashed password us
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| |correct Hash|Text| @@ -196,7 +196,7 @@ Generates a hashed SHA-1 string
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -208,7 +208,7 @@ Generates a hashed SHA-224 string
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -220,7 +220,7 @@ Generates a hashed SHA-256 string
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -232,7 +232,7 @@ Generates a hashed SHA-384 string
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -244,7 +244,7 @@ Generates a hashed SHA-512 string
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| @@ -256,7 +256,7 @@ Decodes the given hash using the given key through TripleDES
-| Params | []() | +| Param | Type | |--------|------| |tripleDES Hash|Text| @@ -268,7 +268,7 @@ Encodes the given string using the given key through TripleDES
-| Params | []() | +| Param | Type | |--------|------| |input Text|Text| diff --git a/docs/components/utilities/decoration.md b/docs/components/utilities/decoration.md index f2f84b705..f4fe67dd0 100644 --- a/docs/components/utilities/decoration.md +++ b/docs/components/utilities/decoration.md @@ -18,7 +18,7 @@ Margin is a way for a component to enforce some distance from others components.
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |values|Text| @@ -29,7 +29,7 @@ The padding around the component. Padding is the space inside the border, betwee
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |values|Text| @@ -40,7 +40,7 @@ This block allows you to create a rectangle or round shape for the visible compo
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |background Color|Number| diff --git a/docs/components/utilities/device-utilities.md b/docs/components/utilities/device-utilities.md index c2db51911..f7b65bb7a 100644 --- a/docs/components/utilities/device-utilities.md +++ b/docs/components/utilities/device-utilities.md @@ -21,7 +21,7 @@ Event to get the IMEI after it was requested.
-| Params | []() | +| Param | Type | |--------|------| |imei|Text| @@ -31,7 +31,7 @@ Event to get the serial number after it was requested.
-| Params | []() | +| Param | Type | |--------|------| |serial|Text| @@ -43,7 +43,7 @@ Copy text to clipboard. In case 'Show Success Toast' is true, the toast with you
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |Success Toast Message|Text| @@ -172,7 +172,7 @@ Parse a text between two strings. Example: text = abcdef, start = a, end = d, re
-| Params | []() | +| Param | Type | |--------|------| |text|Text| |start|Text| @@ -187,7 +187,7 @@ Paste text from clipboard. In case 'Show Success Toast' is true, the toast with
-| Params | []() | +| Param | Type | |--------|------| |Success Toast Message|Text| diff --git a/docs/components/utilities/image-utilities.md b/docs/components/utilities/image-utilities.md index 09ecb2037..8ecd15cee 100644 --- a/docs/components/utilities/image-utilities.md +++ b/docs/components/utilities/image-utilities.md @@ -22,7 +22,7 @@ Load a new image from the given path to any component. You can load also images
-| Params | []() | +| Param | Type | |--------|------| |component|Component| |path|Text| diff --git a/docs/components/utilities/keyguard-manager.md b/docs/components/utilities/keyguard-manager.md index 4c9b0ad6e..b2c265195 100644 --- a/docs/components/utilities/keyguard-manager.md +++ b/docs/components/utilities/keyguard-manager.md @@ -21,7 +21,7 @@ Event to detect a authentication request was called.
-| Params | []() | +| Param | Type | |--------|------| |is Authenticated|Boolean| @@ -31,7 +31,7 @@ Event to detect a dissmiss request keyguard was called.
-| Params | []() | +| Param | Type | |--------|------| |succeeded|Boolean| |cancelled|Boolean| @@ -56,7 +56,7 @@ Specifies whether an Activity should be shown on top of the lock screen whenever
-| Params | []() | +| Param | Type | |--------|------| |enabled|Boolean| diff --git a/docs/components/utilities/package-utilities.md b/docs/components/utilities/package-utilities.md index f98de6737..0e76783f9 100644 --- a/docs/components/utilities/package-utilities.md +++ b/docs/components/utilities/package-utilities.md @@ -20,7 +20,7 @@ Returns the name from the given package name.
-| Params | []() | +| Param | Type | |--------|------| |package Name|Text| @@ -32,7 +32,7 @@ Try to show the application icon of the given package name. If the application c
-| Params | []() | +| Param | Type | |--------|------| |package Name|Text| @@ -44,7 +44,7 @@ Returns true if a package (app) is installed and enabled.
-| Params | []() | +| Param | Type | |--------|------| |package Name|Text| @@ -56,7 +56,7 @@ Check whether a particular package has been granted a particular permission.
-| Params | []() | +| Param | Type | |--------|------| |permission Name|Text| |package Name|Text| @@ -69,7 +69,7 @@ This block will returns the version code of the package name. Returns '-1' if th
-| Params | []() | +| Param | Type | |--------|------| |package Name|Text| @@ -81,7 +81,7 @@ This block will returns the version name of the package name. Returns 'Package n
-| Params | []() | +| Param | Type | |--------|------| |package Name|Text| diff --git a/docs/components/utilities/resource-utilities.md b/docs/components/utilities/resource-utilities.md index 7e05fe8c9..9eea9008a 100644 --- a/docs/components/utilities/resource-utilities.md +++ b/docs/components/utilities/resource-utilities.md @@ -26,7 +26,7 @@ This block is deprecated and will be removed soon. Use instead 'Get String From
-| Params | []() | +| Param | Type | |--------|------| |resource Name|Text| |if Resource Not Found Use|Text| @@ -39,7 +39,7 @@ Get the text from a asset resource file. Make sure you uploaded a file at 'Resou
-| Params | []() | +| Param | Type | |--------|------| |resource Name|Text| |if Resource Not Found Use|Text| @@ -52,7 +52,7 @@ Get the text from a path resource file. Make sure you added a file path at 'Reso
-| Params | []() | +| Param | Type | |--------|------| |resource Name|Text| |if Resource Not Found Use|Text| diff --git a/docs/components/utilities/screenshot.md b/docs/components/utilities/screenshot.md index 65aabc581..4e2d5add6 100644 --- a/docs/components/utilities/screenshot.md +++ b/docs/components/utilities/screenshot.md @@ -22,7 +22,7 @@ Event to detect that a screenshot was made by the user. Returns the image path t
-| Params | []() | +| Param | Type | |--------|------| |image|Text| diff --git a/docs/components/utilities/shell.md b/docs/components/utilities/shell.md index 22c78b689..e56df6fb9 100644 --- a/docs/components/utilities/shell.md +++ b/docs/components/utilities/shell.md @@ -22,7 +22,7 @@ Read output after executing shell command
-| Params | []() | +| Param | Type | |--------|------| |out|Text| @@ -34,7 +34,7 @@ Executes shell commands. To get output, use "GotOutput" event block.
-| Params | []() | +| Param | Type | |--------|------| |in|Text| diff --git a/docs/components/utilities/wallpaper.md b/docs/components/utilities/wallpaper.md index 593b5f2c8..3a5ed8d99 100644 --- a/docs/components/utilities/wallpaper.md +++ b/docs/components/utilities/wallpaper.md @@ -24,7 +24,7 @@ Event to detect that the component got the current system wallpaper.
-| Params | []() | +| Param | Type | |--------|------| |picture|Text| @@ -34,7 +34,7 @@ Event to detect that the user has changed the wallpaper. This event will be invo
-| Params | []() | +| Param | Type | |--------|------| |success|Boolean| @@ -70,7 +70,7 @@ Change the current lock screen wallpaper. This block works only on devices with
-| Params | []() | +| Param | Type | |--------|------| |image|Text| @@ -80,7 +80,7 @@ Change the current system wallpaper.
-| Params | []() | +| Param | Type | |--------|------| |image|Text|