From 5297074a7e2223eb305e69426d735f2fd0654c4e Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Sat, 19 Oct 2019 13:54:07 +0000 Subject: [PATCH] Deploy website Deploy website version based on 03017c8dc784bfe047d10f3692a02b48d8909977 --- docs/0.43/animated.html | 10 +++++----- docs/0.43/animated/index.html | 10 +++++----- docs/0.43/dimensions.html | 2 +- docs/0.43/dimensions/index.html | 2 +- docs/0.43/easing.html | 14 +++++++------- docs/0.43/easing/index.html | 14 +++++++------- docs/0.43/layout-props.html | 4 ++-- docs/0.43/layout-props/index.html | 4 ++-- docs/0.43/scrollview.html | 14 ++++++++------ docs/0.43/scrollview/index.html | 14 ++++++++------ docs/0.43/textinput.html | 6 +++--- docs/0.43/textinput/index.html | 6 +++--- docs/0.44/dimensions.html | 2 +- docs/0.44/dimensions/index.html | 2 +- docs/0.44/easing.html | 14 +++++++------- docs/0.44/easing/index.html | 14 +++++++------- docs/0.44/layout-props.html | 4 ++-- docs/0.44/layout-props/index.html | 4 ++-- docs/0.45/dimensions.html | 2 +- docs/0.45/dimensions/index.html | 2 +- docs/0.45/easing.html | 14 +++++++------- docs/0.45/easing/index.html | 14 +++++++------- docs/0.46/dimensions.html | 2 +- docs/0.46/dimensions/index.html | 2 +- docs/0.46/easing.html | 14 +++++++------- docs/0.46/easing/index.html | 14 +++++++------- docs/0.47/dimensions.html | 2 +- docs/0.47/dimensions/index.html | 2 +- docs/0.47/easing.html | 14 +++++++------- docs/0.47/easing/index.html | 14 +++++++------- docs/0.48/dimensions.html | 2 +- docs/0.48/dimensions/index.html | 2 +- docs/0.48/easing.html | 14 +++++++------- docs/0.48/easing/index.html | 14 +++++++------- docs/0.49/dimensions.html | 2 +- docs/0.49/dimensions/index.html | 2 +- docs/0.49/easing.html | 14 +++++++------- docs/0.49/easing/index.html | 14 +++++++------- docs/0.50/dimensions.html | 2 +- docs/0.50/dimensions/index.html | 2 +- docs/0.50/easing.html | 14 +++++++------- docs/0.50/easing/index.html | 14 +++++++------- docs/0.51/dimensions.html | 2 +- docs/0.51/dimensions/index.html | 2 +- docs/0.52/dimensions.html | 2 +- docs/0.52/dimensions/index.html | 2 +- docs/0.53/dimensions.html | 2 +- docs/0.53/dimensions/index.html | 2 +- docs/0.54/dimensions.html | 2 +- docs/0.54/dimensions/index.html | 2 +- docs/0.55/dimensions.html | 2 +- docs/0.55/dimensions/index.html | 2 +- docs/0.56/dimensions.html | 2 +- docs/0.56/dimensions/index.html | 2 +- docs/0.57/dimensions.html | 2 +- docs/0.57/dimensions/index.html | 2 +- 56 files changed, 182 insertions(+), 178 deletions(-) diff --git a/docs/0.43/animated.html b/docs/0.43/animated.html index 85d22390295..0a8067532a5 100644 --- a/docs/0.43/animated.html +++ b/docs/0.43/animated.html @@ -1,4 +1,4 @@ -Animated · React Native
Edit

Animated

The Animated library is designed to make animations fluid, powerful, and easy to build and maintain. Animated focuses on declarative relationships between inputs and outputs, with configurable transforms in between, and simple start/stop methods to control time-based animation execution.

+
Edit

Animated

The Animated library is designed to make animations fluid, powerful, and hassle-free to build and maintain. Animated focuses on declarative relationships between inputs and outputs, with configurable transforms in between, and straight forward start/stop methods to control time-based animation execution.

The simplest workflow for creating an animation is to to create an Animated.Value, hook it up to one or more style attributes of an animated component, and then drive updates via animations using Animated.timing():

Animated.timing(
   // Animate value over time
@@ -90,7 +90,7 @@
 

Animated provides three types of animation types. Each animation type provides a particular animation curve that controls how your values animate from their initial value to the final value:

In most cases, you will be using timing(). By default, it uses a symmetric easeInOut curve that conveys the gradual acceleration of an object to full speed and concludes by gradually decelerating to a stop.

@@ -100,7 +100,7 @@

By using the native driver, we send everything about the animation to native before starting the animation, allowing native code to perform the animation on the UI thread without having to go through the bridge on every frame. Once the animation has started, the JS thread can be blocked without affecting the animation.

You can use the native driver by specifying useNativeDriver: true in your animation configuration. See the Animations guide to learn more.

Animatable components

-

Only animatable components can be animated. These special components do the magic of binding the animated values to the properties, and do targeted native updates to avoid the cost of the react render and reconciliation process on every frame. They also handle cleanup on unmount so they are safe by default.

+

Only animatable components can be animated. These components do the magic of binding the animated values to the properties, and do targeted native updates to avoid the cost of the react render and reconciliation process on every frame. They also handle cleanup on unmount so they are safe by default.

@@ -119,7 +119,7 @@
  • Animated.sequence() starts the animations in order, waiting for each to complete before starting the next.
  • Animated.stagger() starts animations in order and in parallel, but with successive delays.
  • -

    Animations can also be chained together simply by setting the toValue of one animation to be another Animated.Value. See Tracking dynamic values in the Animations guide.

    +

    Animations can also be chained together by setting the toValue of one animation to be another Animated.Value. See Tracking dynamic values in the Animations guide.

    By default, if one animation is stopped or interrupted, then all other animations in the group are also stopped.

    Combining animated values

    You can combine two animated values via addition, multiplication, division, or modulo to make a new animated value:

    diff --git a/docs/0.43/animated/index.html b/docs/0.43/animated/index.html index 85d22390295..0a8067532a5 100644 --- a/docs/0.43/animated/index.html +++ b/docs/0.43/animated/index.html @@ -1,4 +1,4 @@ -Animated · React Native
    Edit

    Animated

    The Animated library is designed to make animations fluid, powerful, and easy to build and maintain. Animated focuses on declarative relationships between inputs and outputs, with configurable transforms in between, and simple start/stop methods to control time-based animation execution.

    +
    Edit

    Animated

    The Animated library is designed to make animations fluid, powerful, and hassle-free to build and maintain. Animated focuses on declarative relationships between inputs and outputs, with configurable transforms in between, and straight forward start/stop methods to control time-based animation execution.

    The simplest workflow for creating an animation is to to create an Animated.Value, hook it up to one or more style attributes of an animated component, and then drive updates via animations using Animated.timing():

    Animated.timing(
       // Animate value over time
    @@ -90,7 +90,7 @@
     

    Animated provides three types of animation types. Each animation type provides a particular animation curve that controls how your values animate from their initial value to the final value:

    In most cases, you will be using timing(). By default, it uses a symmetric easeInOut curve that conveys the gradual acceleration of an object to full speed and concludes by gradually decelerating to a stop.

    @@ -100,7 +100,7 @@

    By using the native driver, we send everything about the animation to native before starting the animation, allowing native code to perform the animation on the UI thread without having to go through the bridge on every frame. Once the animation has started, the JS thread can be blocked without affecting the animation.

    You can use the native driver by specifying useNativeDriver: true in your animation configuration. See the Animations guide to learn more.

    Animatable components

    -

    Only animatable components can be animated. These special components do the magic of binding the animated values to the properties, and do targeted native updates to avoid the cost of the react render and reconciliation process on every frame. They also handle cleanup on unmount so they are safe by default.

    +

    Only animatable components can be animated. These components do the magic of binding the animated values to the properties, and do targeted native updates to avoid the cost of the react render and reconciliation process on every frame. They also handle cleanup on unmount so they are safe by default.

    @@ -119,7 +119,7 @@
  • Animated.sequence() starts the animations in order, waiting for each to complete before starting the next.
  • Animated.stagger() starts animations in order and in parallel, but with successive delays.
  • -

    Animations can also be chained together simply by setting the toValue of one animation to be another Animated.Value. See Tracking dynamic values in the Animations guide.

    +

    Animations can also be chained together by setting the toValue of one animation to be another Animated.Value. See Tracking dynamic values in the Animations guide.

    By default, if one animation is stopped or interrupted, then all other animations in the group are also stopped.

    Combining animated values

    You can combine two animated values via addition, multiplication, division, or modulo to make a new animated value:

    diff --git a/docs/0.43/dimensions.html b/docs/0.43/dimensions.html index 3895c4a59ea..7b8deb9f22c 100644 --- a/docs/0.43/dimensions.html +++ b/docs/0.43/dimensions.html @@ -82,7 +82,7 @@
    static set(dims)
     

    This should only be called from native code by sending the didUpdateDimensions event.

    -

    @param {object} dims Simple string-keyed object of dimensions to set

    +

    @param {object} dims string-keyed object of dimensions to set


    get()

    static get(dim)
    diff --git a/docs/0.43/dimensions/index.html b/docs/0.43/dimensions/index.html
    index 3895c4a59ea..7b8deb9f22c 100644
    --- a/docs/0.43/dimensions/index.html
    +++ b/docs/0.43/dimensions/index.html
    @@ -82,7 +82,7 @@
     
    static set(dims)
     

    This should only be called from native code by sending the didUpdateDimensions event.

    -

    @param {object} dims Simple string-keyed object of dimensions to set

    +

    @param {object} dims string-keyed object of dimensions to set


    get()

    static get(dim)
    diff --git a/docs/0.43/easing.html b/docs/0.43/easing.html
    index 1495074c99a..cb9c53622cf 100644
    --- a/docs/0.43/easing.html
    +++ b/docs/0.43/easing.html
    @@ -73,10 +73,10 @@
     

    Predefined animations

    The Easing module provides several predefined animations through the following methods:

      -
    • back provides a simple animation where the object goes slightly back before moving forward
    • +
    • back provides an animation where the object goes slightly back before moving forward
    • bounce provides a bouncing animation
    • -
    • ease provides a simple inertial animation
    • -
    • elastic provides a simple spring interaction
    • +
    • ease provides an inertial animation
    • +
    • elastic provides a spring interaction

    Standard functions

    Three standard easing functions are provided:

    @@ -142,7 +142,7 @@

    ease()

    static ease(t)
     
    -

    A simple inertial interaction, similar to an object slowly accelerating to speed.

    +

    An inertial interaction, similar to an object slowly accelerating to speed.

    http://cubic-bezier.com/#.42,0,1,1


    quad()

    @@ -184,7 +184,7 @@

    elastic()

    static elastic(bounciness)
     
    -

    A simple elastic interaction, similar to a spring oscillating back and forth.

    +

    An elastic interaction, similar to a spring oscillating back and forth.

    Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

    http://easings.net/#easeInElastic

    Wolfram Plots:

    @@ -196,7 +196,7 @@

    back()

    static back(s)
     
    -

    Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

    +

    Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

    Wolfram Plot:

    • http://tiny.cc/back_default (s = 1.70158, default)
    • @@ -205,7 +205,7 @@

      bounce()

      static bounce(t)
       
      -

      Provides a simple bouncing effect.

      +

      Provides a bouncing effect.

      http://easings.net/#easeInBounce


      bezier()

      diff --git a/docs/0.43/easing/index.html b/docs/0.43/easing/index.html index 1495074c99a..cb9c53622cf 100644 --- a/docs/0.43/easing/index.html +++ b/docs/0.43/easing/index.html @@ -73,10 +73,10 @@

      Predefined animations

      The Easing module provides several predefined animations through the following methods:

        -
      • back provides a simple animation where the object goes slightly back before moving forward
      • +
      • back provides an animation where the object goes slightly back before moving forward
      • bounce provides a bouncing animation
      • -
      • ease provides a simple inertial animation
      • -
      • elastic provides a simple spring interaction
      • +
      • ease provides an inertial animation
      • +
      • elastic provides a spring interaction

      Standard functions

      Three standard easing functions are provided:

      @@ -142,7 +142,7 @@

      ease()

      static ease(t)
       
      -

      A simple inertial interaction, similar to an object slowly accelerating to speed.

      +

      An inertial interaction, similar to an object slowly accelerating to speed.

      http://cubic-bezier.com/#.42,0,1,1


      quad()

      @@ -184,7 +184,7 @@

      elastic()

      static elastic(bounciness)
       
      -

      A simple elastic interaction, similar to a spring oscillating back and forth.

      +

      An elastic interaction, similar to a spring oscillating back and forth.

      Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

      http://easings.net/#easeInElastic

      Wolfram Plots:

      @@ -196,7 +196,7 @@

      back()

      static back(s)
       
      -

      Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

      +

      Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

      Wolfram Plot:

      • http://tiny.cc/back_default (s = 1.70158, default)
      • @@ -205,7 +205,7 @@

        bounce()

        static bounce(t)
         
        -

        Provides a simple bouncing effect.

        +

        Provides a bouncing effect.

        http://easings.net/#easeInBounce


        bezier()

        diff --git a/docs/0.43/layout-props.html b/docs/0.43/layout-props.html index 738edbbe315..c797db74728 100644 --- a/docs/0.43/layout-props.html +++ b/docs/0.43/layout-props.html @@ -571,9 +571,9 @@

        position

        -

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always just relative to the parent.

        +

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always relative to the parent.

        If you want to position a child using specific numbers of logical pixels relative to its parent, set the child to have absolute position.

        -

        If you want to position a child relative to something that is not its parent, just don't use styles for that. Use the component tree.

        +

        If you want to position a child relative to something that is not its parent, don't use styles for that. Use the component tree.

        See https://github.com/facebook/yoga for more details on how position differs between React Native and CSS.

        diff --git a/docs/0.43/layout-props/index.html b/docs/0.43/layout-props/index.html index 738edbbe315..c797db74728 100644 --- a/docs/0.43/layout-props/index.html +++ b/docs/0.43/layout-props/index.html @@ -571,9 +571,9 @@

        position

        -

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always just relative to the parent.

        +

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always relative to the parent.

        If you want to position a child using specific numbers of logical pixels relative to its parent, set the child to have absolute position.

        -

        If you want to position a child relative to something that is not its parent, just don't use styles for that. Use the component tree.

        +

        If you want to position a child relative to something that is not its parent, don't use styles for that. Use the component tree.

        See https://github.com/facebook/yoga for more details on how position differs between React Native and CSS.

        diff --git a/docs/0.43/scrollview.html b/docs/0.43/scrollview.html index 34131bb079f..1cb06a75003 100644 --- a/docs/0.43/scrollview.html +++ b/docs/0.43/scrollview.html @@ -69,12 +69,12 @@ } });
        Edit

        ScrollView

        Component that wraps platform ScrollView while providing integration with touch locking "responder" system.

        -

        Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which the element inspector makes easy to debug.

        +

        Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which can be debugged by element inspector.

        Doesn't yet support other contained responders from blocking this scroll view from becoming the responder.

        <ScrollView> vs <FlatList> - which one to use?

        -

        ScrollView simply renders all its react child components at once. That makes it very easy to understand and use.

        +

        ScrollView renders all its react child components at once. That makes it very convenient to understand and use.

        On the other hand, this has a performance downside. Imagine you have a very long list of items you want to display, maybe several screens worth of content. Creating JS components and native views for everythign all at once, much of which may not even be shown, will contribute to slow rendering and increased memory usage.

        -

        This is where FlatList comes into play. FlatList renders items lazily, just when they are about to appear, and removes items that scroll way off screen to save memory and processing time.

        +

        This is where FlatList comes into play. FlatList renders items lazily, when they are about to appear, and removes items that scroll way off screen to save memory and processing time.

        FlatList is also handy if you want to render separators between your items, multiple columns, infinite scroll loading, or any number of other features it supports out of the box.

        Props

          @@ -480,9 +480,11 @@

          indicatorStyle

          The style of the scroll indicators.

            -
          • default (the default), same as black.
          • -
          • black, scroll indicator is black. This style is good against a white content background.
          • -
          • white, scroll indicator is white. This style is good against a black content background.
          • +
          • default (the default), same as black. + +- `black`, scroll indicator is black. This style is good against a white content background. +- `white`, scroll indicator is white. This style is good against a black content background. +
        diff --git a/docs/0.43/scrollview/index.html b/docs/0.43/scrollview/index.html index 34131bb079f..1cb06a75003 100644 --- a/docs/0.43/scrollview/index.html +++ b/docs/0.43/scrollview/index.html @@ -69,12 +69,12 @@ } });
        Edit

        ScrollView

        Component that wraps platform ScrollView while providing integration with touch locking "responder" system.

        -

        Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which the element inspector makes easy to debug.

        +

        Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which can be debugged by element inspector.

        Doesn't yet support other contained responders from blocking this scroll view from becoming the responder.

        <ScrollView> vs <FlatList> - which one to use?

        -

        ScrollView simply renders all its react child components at once. That makes it very easy to understand and use.

        +

        ScrollView renders all its react child components at once. That makes it very convenient to understand and use.

        On the other hand, this has a performance downside. Imagine you have a very long list of items you want to display, maybe several screens worth of content. Creating JS components and native views for everythign all at once, much of which may not even be shown, will contribute to slow rendering and increased memory usage.

        -

        This is where FlatList comes into play. FlatList renders items lazily, just when they are about to appear, and removes items that scroll way off screen to save memory and processing time.

        +

        This is where FlatList comes into play. FlatList renders items lazily, when they are about to appear, and removes items that scroll way off screen to save memory and processing time.

        FlatList is also handy if you want to render separators between your items, multiple columns, infinite scroll loading, or any number of other features it supports out of the box.

        Props

          @@ -480,9 +480,11 @@

          indicatorStyle

          The style of the scroll indicators.

            -
          • default (the default), same as black.
          • -
          • black, scroll indicator is black. This style is good against a white content background.
          • -
          • white, scroll indicator is white. This style is good against a black content background.
          • +
          • default (the default), same as black. + +- `black`, scroll indicator is black. This style is good against a white content background. +- `white`, scroll indicator is white. This style is good against a black content background. +
        diff --git a/docs/0.43/textinput.html b/docs/0.43/textinput.html index 74a2fd4ab7b..2d4185482f7 100644 --- a/docs/0.43/textinput.html +++ b/docs/0.43/textinput.html @@ -69,7 +69,7 @@ } });
        Edit

        TextInput

        A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-capitalization, placeholder text, and different keyboard types, such as a numeric keypad.

        -

        The simplest use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A simple example:

        +

        The use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. An example:


        defaultValue

        -

        Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you do not want to deal with listening to events and updating the value prop to keep the controlled state in sync.

        +

        Provides an initial value that will change when the user starts typing. Useful for use-cases where you do not want to deal with listening to events and updating the value prop to keep the controlled state in sync.

        @@ -578,7 +578,7 @@ AppRegistry.registerComponent(
        TypeRequired

        value

        -

        The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses, this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

        +

        The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses, this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

        diff --git a/docs/0.43/textinput/index.html b/docs/0.43/textinput/index.html index 74a2fd4ab7b..2d4185482f7 100644 --- a/docs/0.43/textinput/index.html +++ b/docs/0.43/textinput/index.html @@ -69,7 +69,7 @@ } });
        Edit

        TextInput

        A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-capitalization, placeholder text, and different keyboard types, such as a numeric keypad.

        -

        The simplest use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A simple example:

        +

        The use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. An example:

        TypeRequired

        defaultValue

        -

        Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you do not want to deal with listening to events and updating the value prop to keep the controlled state in sync.

        +

        Provides an initial value that will change when the user starts typing. Useful for use-cases where you do not want to deal with listening to events and updating the value prop to keep the controlled state in sync.

        @@ -578,7 +578,7 @@ AppRegistry.registerComponent(
        TypeRequired

        value

        -

        The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses, this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

        +

        The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses, this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

        diff --git a/docs/0.44/dimensions.html b/docs/0.44/dimensions.html index f31eb9e5844..fcd3928e08c 100644 --- a/docs/0.44/dimensions.html +++ b/docs/0.44/dimensions.html @@ -82,7 +82,7 @@
        static set(dims)
         

        This should only be called from native code by sending the didUpdateDimensions event.

        -

        @param {object} dims Simple string-keyed object of dimensions to set

        +

        @param {object} dims string-keyed object of dimensions to set


        get()

        static get(dim)
        diff --git a/docs/0.44/dimensions/index.html b/docs/0.44/dimensions/index.html
        index f31eb9e5844..fcd3928e08c 100644
        --- a/docs/0.44/dimensions/index.html
        +++ b/docs/0.44/dimensions/index.html
        @@ -82,7 +82,7 @@
         
        static set(dims)
         

        This should only be called from native code by sending the didUpdateDimensions event.

        -

        @param {object} dims Simple string-keyed object of dimensions to set

        +

        @param {object} dims string-keyed object of dimensions to set


        get()

        static get(dim)
        diff --git a/docs/0.44/easing.html b/docs/0.44/easing.html
        index b627fd7d0da..f44d1a79ae1 100644
        --- a/docs/0.44/easing.html
        +++ b/docs/0.44/easing.html
        @@ -73,10 +73,10 @@
         

        Predefined animations

        The Easing module provides several predefined animations through the following methods:

          -
        • back provides a simple animation where the object goes slightly back before moving forward
        • +
        • back provides an animation where the object goes slightly back before moving forward
        • bounce provides a bouncing animation
        • -
        • ease provides a simple inertial animation
        • -
        • elastic provides a simple spring interaction
        • +
        • ease provides an inertial animation
        • +
        • elastic provides a spring interaction

        Standard functions

        Three standard easing functions are provided:

        @@ -142,7 +142,7 @@

        ease()

        static ease(t)
         
        -

        A simple inertial interaction, similar to an object slowly accelerating to speed.

        +

        An inertial interaction, similar to an object slowly accelerating to speed.

        http://cubic-bezier.com/#.42,0,1,1


        quad()

        @@ -184,7 +184,7 @@

        elastic()

        static elastic(bounciness)
         
        -

        A simple elastic interaction, similar to a spring oscillating back and forth.

        +

        An elastic interaction, similar to a spring oscillating back and forth.

        Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

        http://easings.net/#easeInElastic

        Wolfram Plots:

        @@ -196,7 +196,7 @@

        back()

        static back(s)
         
        -

        Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

        +

        Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

        Wolfram Plot:

        • http://tiny.cc/back_default (s = 1.70158, default)
        • @@ -205,7 +205,7 @@

          bounce()

          static bounce(t)
           
          -

          Provides a simple bouncing effect.

          +

          Provides a bouncing effect.

          http://easings.net/#easeInBounce


          bezier()

          diff --git a/docs/0.44/easing/index.html b/docs/0.44/easing/index.html index b627fd7d0da..f44d1a79ae1 100644 --- a/docs/0.44/easing/index.html +++ b/docs/0.44/easing/index.html @@ -73,10 +73,10 @@

          Predefined animations

          The Easing module provides several predefined animations through the following methods:

            -
          • back provides a simple animation where the object goes slightly back before moving forward
          • +
          • back provides an animation where the object goes slightly back before moving forward
          • bounce provides a bouncing animation
          • -
          • ease provides a simple inertial animation
          • -
          • elastic provides a simple spring interaction
          • +
          • ease provides an inertial animation
          • +
          • elastic provides a spring interaction

          Standard functions

          Three standard easing functions are provided:

          @@ -142,7 +142,7 @@

          ease()

          static ease(t)
           
          -

          A simple inertial interaction, similar to an object slowly accelerating to speed.

          +

          An inertial interaction, similar to an object slowly accelerating to speed.

          http://cubic-bezier.com/#.42,0,1,1


          quad()

          @@ -184,7 +184,7 @@

          elastic()

          static elastic(bounciness)
           
          -

          A simple elastic interaction, similar to a spring oscillating back and forth.

          +

          An elastic interaction, similar to a spring oscillating back and forth.

          Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

          http://easings.net/#easeInElastic

          Wolfram Plots:

          @@ -196,7 +196,7 @@

          back()

          static back(s)
           
          -

          Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

          +

          Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

          Wolfram Plot:

          • http://tiny.cc/back_default (s = 1.70158, default)
          • @@ -205,7 +205,7 @@

            bounce()

            static bounce(t)
             
            -

            Provides a simple bouncing effect.

            +

            Provides a bouncing effect.

            http://easings.net/#easeInBounce


            bezier()

            diff --git a/docs/0.44/layout-props.html b/docs/0.44/layout-props.html index a0406643c42..8b38cfab4ed 100644 --- a/docs/0.44/layout-props.html +++ b/docs/0.44/layout-props.html @@ -571,9 +571,9 @@
        TypeRequired

        position

        -

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always just relative to the parent.

        +

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always relative to the parent.

        If you want to position a child using specific numbers of logical pixels relative to its parent, set the child to have absolute position.

        -

        If you want to position a child relative to something that is not its parent, just don't use styles for that. Use the component tree.

        +

        If you want to position a child relative to something that is not its parent, don't use styles for that. Use the component tree.

        See https://github.com/facebook/yoga for more details on how position differs between React Native and CSS.

        diff --git a/docs/0.44/layout-props/index.html b/docs/0.44/layout-props/index.html index a0406643c42..8b38cfab4ed 100644 --- a/docs/0.44/layout-props/index.html +++ b/docs/0.44/layout-props/index.html @@ -571,9 +571,9 @@

        position

        -

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always just relative to the parent.

        +

        position in React Native is similar to regular CSS, but everything is set to relative by default, so absolute positioning is always relative to the parent.

        If you want to position a child using specific numbers of logical pixels relative to its parent, set the child to have absolute position.

        -

        If you want to position a child relative to something that is not its parent, just don't use styles for that. Use the component tree.

        +

        If you want to position a child relative to something that is not its parent, don't use styles for that. Use the component tree.

        See https://github.com/facebook/yoga for more details on how position differs between React Native and CSS.

        diff --git a/docs/0.45/dimensions.html b/docs/0.45/dimensions.html index 1949111578c..52401aa1114 100644 --- a/docs/0.45/dimensions.html +++ b/docs/0.45/dimensions.html @@ -82,7 +82,7 @@
        static set(dims)
         

        This should only be called from native code by sending the didUpdateDimensions event.

        -

        @param {object} dims Simple string-keyed object of dimensions to set

        +

        @param {object} dims string-keyed object of dimensions to set


        get()

        static get(dim)
        diff --git a/docs/0.45/dimensions/index.html b/docs/0.45/dimensions/index.html
        index 1949111578c..52401aa1114 100644
        --- a/docs/0.45/dimensions/index.html
        +++ b/docs/0.45/dimensions/index.html
        @@ -82,7 +82,7 @@
         
        static set(dims)
         

        This should only be called from native code by sending the didUpdateDimensions event.

        -

        @param {object} dims Simple string-keyed object of dimensions to set

        +

        @param {object} dims string-keyed object of dimensions to set


        get()

        static get(dim)
        diff --git a/docs/0.45/easing.html b/docs/0.45/easing.html
        index 33c0c52e729..1bd17699fa4 100644
        --- a/docs/0.45/easing.html
        +++ b/docs/0.45/easing.html
        @@ -73,10 +73,10 @@
         

        Predefined animations

        The Easing module provides several predefined animations through the following methods:

          -
        • back provides a simple animation where the object goes slightly back before moving forward
        • +
        • back provides an animation where the object goes slightly back before moving forward
        • bounce provides a bouncing animation
        • -
        • ease provides a simple inertial animation
        • -
        • elastic provides a simple spring interaction
        • +
        • ease provides an inertial animation
        • +
        • elastic provides a spring interaction

        Standard functions

        Three standard easing functions are provided:

        @@ -142,7 +142,7 @@

        ease()

        static ease(t)
         
        -

        A simple inertial interaction, similar to an object slowly accelerating to speed.

        +

        An inertial interaction, similar to an object slowly accelerating to speed.

        http://cubic-bezier.com/#.42,0,1,1


        quad()

        @@ -184,7 +184,7 @@

        elastic()

        static elastic(bounciness)
         
        -

        A simple elastic interaction, similar to a spring oscillating back and forth.

        +

        An elastic interaction, similar to a spring oscillating back and forth.

        Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

        http://easings.net/#easeInElastic

        Wolfram Plots:

        @@ -196,7 +196,7 @@

        back()

        static back(s)
         
        -

        Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

        +

        Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

        Wolfram Plot:

        • http://tiny.cc/back_default (s = 1.70158, default)
        • @@ -205,7 +205,7 @@

          bounce()

          static bounce(t)
           
          -

          Provides a simple bouncing effect.

          +

          Provides a bouncing effect.

          http://easings.net/#easeInBounce


          bezier()

          diff --git a/docs/0.45/easing/index.html b/docs/0.45/easing/index.html index 33c0c52e729..1bd17699fa4 100644 --- a/docs/0.45/easing/index.html +++ b/docs/0.45/easing/index.html @@ -73,10 +73,10 @@

          Predefined animations

          The Easing module provides several predefined animations through the following methods:

            -
          • back provides a simple animation where the object goes slightly back before moving forward
          • +
          • back provides an animation where the object goes slightly back before moving forward
          • bounce provides a bouncing animation
          • -
          • ease provides a simple inertial animation
          • -
          • elastic provides a simple spring interaction
          • +
          • ease provides an inertial animation
          • +
          • elastic provides a spring interaction

          Standard functions

          Three standard easing functions are provided:

          @@ -142,7 +142,7 @@

          ease()

          static ease(t)
           
          -

          A simple inertial interaction, similar to an object slowly accelerating to speed.

          +

          An inertial interaction, similar to an object slowly accelerating to speed.

          http://cubic-bezier.com/#.42,0,1,1


          quad()

          @@ -184,7 +184,7 @@

          elastic()

          static elastic(bounciness)
           
          -

          A simple elastic interaction, similar to a spring oscillating back and forth.

          +

          An elastic interaction, similar to a spring oscillating back and forth.

          Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

          http://easings.net/#easeInElastic

          Wolfram Plots:

          @@ -196,7 +196,7 @@

          back()

          static back(s)
           
          -

          Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

          +

          Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

          Wolfram Plot:

          • http://tiny.cc/back_default (s = 1.70158, default)
          • @@ -205,7 +205,7 @@

            bounce()

            static bounce(t)
             
            -

            Provides a simple bouncing effect.

            +

            Provides a bouncing effect.

            http://easings.net/#easeInBounce


            bezier()

            diff --git a/docs/0.46/dimensions.html b/docs/0.46/dimensions.html index 5a32cf81690..82b31a1920d 100644 --- a/docs/0.46/dimensions.html +++ b/docs/0.46/dimensions.html @@ -82,7 +82,7 @@
            static set(dims)
             

            This should only be called from native code by sending the didUpdateDimensions event.

            -

            @param {object} dims Simple string-keyed object of dimensions to set

            +

            @param {object} dims string-keyed object of dimensions to set


            get()

            static get(dim)
            diff --git a/docs/0.46/dimensions/index.html b/docs/0.46/dimensions/index.html
            index 5a32cf81690..82b31a1920d 100644
            --- a/docs/0.46/dimensions/index.html
            +++ b/docs/0.46/dimensions/index.html
            @@ -82,7 +82,7 @@
             
            static set(dims)
             

            This should only be called from native code by sending the didUpdateDimensions event.

            -

            @param {object} dims Simple string-keyed object of dimensions to set

            +

            @param {object} dims string-keyed object of dimensions to set


            get()

            static get(dim)
            diff --git a/docs/0.46/easing.html b/docs/0.46/easing.html
            index 27482832a3d..20843b0d455 100644
            --- a/docs/0.46/easing.html
            +++ b/docs/0.46/easing.html
            @@ -73,10 +73,10 @@
             

            Predefined animations

            The Easing module provides several predefined animations through the following methods:

              -
            • back provides a simple animation where the object goes slightly back before moving forward
            • +
            • back provides an animation where the object goes slightly back before moving forward
            • bounce provides a bouncing animation
            • -
            • ease provides a simple inertial animation
            • -
            • elastic provides a simple spring interaction
            • +
            • ease provides an inertial animation
            • +
            • elastic provides a spring interaction

            Standard functions

            Three standard easing functions are provided:

            @@ -142,7 +142,7 @@

            ease()

            static ease(t)
             
            -

            A simple inertial interaction, similar to an object slowly accelerating to speed.

            +

            An inertial interaction, similar to an object slowly accelerating to speed.

            http://cubic-bezier.com/#.42,0,1,1


            quad()

            @@ -184,7 +184,7 @@

            elastic()

            static elastic(bounciness)
             
            -

            A simple elastic interaction, similar to a spring oscillating back and forth.

            +

            An elastic interaction, similar to a spring oscillating back and forth.

            Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

            http://easings.net/#easeInElastic

            Wolfram Plots:

            @@ -196,7 +196,7 @@

            back()

            static back(s)
             
            -

            Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

            +

            Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

            Wolfram Plot:

            • http://tiny.cc/back_default (s = 1.70158, default)
            • @@ -205,7 +205,7 @@

              bounce()

              static bounce(t)
               
              -

              Provides a simple bouncing effect.

              +

              Provides a bouncing effect.

              http://easings.net/#easeInBounce


              bezier()

              diff --git a/docs/0.46/easing/index.html b/docs/0.46/easing/index.html index 27482832a3d..20843b0d455 100644 --- a/docs/0.46/easing/index.html +++ b/docs/0.46/easing/index.html @@ -73,10 +73,10 @@

              Predefined animations

              The Easing module provides several predefined animations through the following methods:

                -
              • back provides a simple animation where the object goes slightly back before moving forward
              • +
              • back provides an animation where the object goes slightly back before moving forward
              • bounce provides a bouncing animation
              • -
              • ease provides a simple inertial animation
              • -
              • elastic provides a simple spring interaction
              • +
              • ease provides an inertial animation
              • +
              • elastic provides a spring interaction

              Standard functions

              Three standard easing functions are provided:

              @@ -142,7 +142,7 @@

              ease()

              static ease(t)
               
              -

              A simple inertial interaction, similar to an object slowly accelerating to speed.

              +

              An inertial interaction, similar to an object slowly accelerating to speed.

              http://cubic-bezier.com/#.42,0,1,1


              quad()

              @@ -184,7 +184,7 @@

              elastic()

              static elastic(bounciness)
               
              -

              A simple elastic interaction, similar to a spring oscillating back and forth.

              +

              An elastic interaction, similar to a spring oscillating back and forth.

              Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

              http://easings.net/#easeInElastic

              Wolfram Plots:

              @@ -196,7 +196,7 @@

              back()

              static back(s)
               
              -

              Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

              +

              Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

              Wolfram Plot:

              • http://tiny.cc/back_default (s = 1.70158, default)
              • @@ -205,7 +205,7 @@

                bounce()

                static bounce(t)
                 
                -

                Provides a simple bouncing effect.

                +

                Provides a bouncing effect.

                http://easings.net/#easeInBounce


                bezier()

                diff --git a/docs/0.47/dimensions.html b/docs/0.47/dimensions.html index 8bb08bd4291..e5f9db32d78 100644 --- a/docs/0.47/dimensions.html +++ b/docs/0.47/dimensions.html @@ -82,7 +82,7 @@
                static set(dims)
                 

                This should only be called from native code by sending the didUpdateDimensions event.

                -

                @param {object} dims Simple string-keyed object of dimensions to set

                +

                @param {object} dims string-keyed object of dimensions to set


                get()

                static get(dim)
                diff --git a/docs/0.47/dimensions/index.html b/docs/0.47/dimensions/index.html
                index 8bb08bd4291..e5f9db32d78 100644
                --- a/docs/0.47/dimensions/index.html
                +++ b/docs/0.47/dimensions/index.html
                @@ -82,7 +82,7 @@
                 
                static set(dims)
                 

                This should only be called from native code by sending the didUpdateDimensions event.

                -

                @param {object} dims Simple string-keyed object of dimensions to set

                +

                @param {object} dims string-keyed object of dimensions to set


                get()

                static get(dim)
                diff --git a/docs/0.47/easing.html b/docs/0.47/easing.html
                index 051eefd49fc..a25b6a5e62b 100644
                --- a/docs/0.47/easing.html
                +++ b/docs/0.47/easing.html
                @@ -73,10 +73,10 @@
                 

                Predefined animations

                The Easing module provides several predefined animations through the following methods:

                  -
                • back provides a simple animation where the object goes slightly back before moving forward
                • +
                • back provides an animation where the object goes slightly back before moving forward
                • bounce provides a bouncing animation
                • -
                • ease provides a simple inertial animation
                • -
                • elastic provides a simple spring interaction
                • +
                • ease provides an inertial animation
                • +
                • elastic provides a spring interaction

                Standard functions

                Three standard easing functions are provided:

                @@ -142,7 +142,7 @@

                ease()

                static ease(t)
                 
                -

                A simple inertial interaction, similar to an object slowly accelerating to speed.

                +

                An inertial interaction, similar to an object slowly accelerating to speed.

                http://cubic-bezier.com/#.42,0,1,1


                quad()

                @@ -184,7 +184,7 @@

                elastic()

                static elastic(bounciness)
                 
                -

                A simple elastic interaction, similar to a spring oscillating back and forth.

                +

                An elastic interaction, similar to a spring oscillating back and forth.

                Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                http://easings.net/#easeInElastic

                Wolfram Plots:

                @@ -196,7 +196,7 @@

                back()

                static back(s)
                 
                -

                Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                +

                Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                Wolfram Plot:

                • http://tiny.cc/back_default (s = 1.70158, default)
                • @@ -205,7 +205,7 @@

                  bounce()

                  static bounce(t)
                   
                  -

                  Provides a simple bouncing effect.

                  +

                  Provides a bouncing effect.

                  http://easings.net/#easeInBounce


                  bezier()

                  diff --git a/docs/0.47/easing/index.html b/docs/0.47/easing/index.html index 051eefd49fc..a25b6a5e62b 100644 --- a/docs/0.47/easing/index.html +++ b/docs/0.47/easing/index.html @@ -73,10 +73,10 @@

                  Predefined animations

                  The Easing module provides several predefined animations through the following methods:

                    -
                  • back provides a simple animation where the object goes slightly back before moving forward
                  • +
                  • back provides an animation where the object goes slightly back before moving forward
                  • bounce provides a bouncing animation
                  • -
                  • ease provides a simple inertial animation
                  • -
                  • elastic provides a simple spring interaction
                  • +
                  • ease provides an inertial animation
                  • +
                  • elastic provides a spring interaction

                  Standard functions

                  Three standard easing functions are provided:

                  @@ -142,7 +142,7 @@

                  ease()

                  static ease(t)
                   
                  -

                  A simple inertial interaction, similar to an object slowly accelerating to speed.

                  +

                  An inertial interaction, similar to an object slowly accelerating to speed.

                  http://cubic-bezier.com/#.42,0,1,1


                  quad()

                  @@ -184,7 +184,7 @@

                  elastic()

                  static elastic(bounciness)
                   
                  -

                  A simple elastic interaction, similar to a spring oscillating back and forth.

                  +

                  An elastic interaction, similar to a spring oscillating back and forth.

                  Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                  http://easings.net/#easeInElastic

                  Wolfram Plots:

                  @@ -196,7 +196,7 @@

                  back()

                  static back(s)
                   
                  -

                  Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                  +

                  Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                  Wolfram Plot:

                  • http://tiny.cc/back_default (s = 1.70158, default)
                  • @@ -205,7 +205,7 @@

                    bounce()

                    static bounce(t)
                     
                    -

                    Provides a simple bouncing effect.

                    +

                    Provides a bouncing effect.

                    http://easings.net/#easeInBounce


                    bezier()

                    diff --git a/docs/0.48/dimensions.html b/docs/0.48/dimensions.html index 37b754f642e..d6995fa2a74 100644 --- a/docs/0.48/dimensions.html +++ b/docs/0.48/dimensions.html @@ -82,7 +82,7 @@
                    static set(dims)
                     

                    This should only be called from native code by sending the didUpdateDimensions event.

                    -

                    @param {object} dims Simple string-keyed object of dimensions to set

                    +

                    @param {object} dims string-keyed object of dimensions to set


                    get()

                    static get(dim)
                    diff --git a/docs/0.48/dimensions/index.html b/docs/0.48/dimensions/index.html
                    index 37b754f642e..d6995fa2a74 100644
                    --- a/docs/0.48/dimensions/index.html
                    +++ b/docs/0.48/dimensions/index.html
                    @@ -82,7 +82,7 @@
                     
                    static set(dims)
                     

                    This should only be called from native code by sending the didUpdateDimensions event.

                    -

                    @param {object} dims Simple string-keyed object of dimensions to set

                    +

                    @param {object} dims string-keyed object of dimensions to set


                    get()

                    static get(dim)
                    diff --git a/docs/0.48/easing.html b/docs/0.48/easing.html
                    index 2651ea25cc4..6dfae6a9547 100644
                    --- a/docs/0.48/easing.html
                    +++ b/docs/0.48/easing.html
                    @@ -73,10 +73,10 @@
                     

                    Predefined animations

                    The Easing module provides several predefined animations through the following methods:

                      -
                    • back provides a simple animation where the object goes slightly back before moving forward
                    • +
                    • back provides an animation where the object goes slightly back before moving forward
                    • bounce provides a bouncing animation
                    • -
                    • ease provides a simple inertial animation
                    • -
                    • elastic provides a simple spring interaction
                    • +
                    • ease provides an inertial animation
                    • +
                    • elastic provides a spring interaction

                    Standard functions

                    Three standard easing functions are provided:

                    @@ -142,7 +142,7 @@

                    ease()

                    static ease(t)
                     
                    -

                    A simple inertial interaction, similar to an object slowly accelerating to speed.

                    +

                    An inertial interaction, similar to an object slowly accelerating to speed.

                    http://cubic-bezier.com/#.42,0,1,1


                    quad()

                    @@ -184,7 +184,7 @@

                    elastic()

                    static elastic(bounciness)
                     
                    -

                    A simple elastic interaction, similar to a spring oscillating back and forth.

                    +

                    An elastic interaction, similar to a spring oscillating back and forth.

                    Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                    http://easings.net/#easeInElastic

                    Wolfram Plots:

                    @@ -196,7 +196,7 @@

                    back()

                    static back(s)
                     
                    -

                    Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                    +

                    Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                    Wolfram Plot:

                    • http://tiny.cc/back_default (s = 1.70158, default)
                    • @@ -205,7 +205,7 @@

                      bounce()

                      static bounce(t)
                       
                      -

                      Provides a simple bouncing effect.

                      +

                      Provides a bouncing effect.

                      http://easings.net/#easeInBounce


                      bezier()

                      diff --git a/docs/0.48/easing/index.html b/docs/0.48/easing/index.html index 2651ea25cc4..6dfae6a9547 100644 --- a/docs/0.48/easing/index.html +++ b/docs/0.48/easing/index.html @@ -73,10 +73,10 @@

                      Predefined animations

                      The Easing module provides several predefined animations through the following methods:

                        -
                      • back provides a simple animation where the object goes slightly back before moving forward
                      • +
                      • back provides an animation where the object goes slightly back before moving forward
                      • bounce provides a bouncing animation
                      • -
                      • ease provides a simple inertial animation
                      • -
                      • elastic provides a simple spring interaction
                      • +
                      • ease provides an inertial animation
                      • +
                      • elastic provides a spring interaction

                      Standard functions

                      Three standard easing functions are provided:

                      @@ -142,7 +142,7 @@

                      ease()

                      static ease(t)
                       
                      -

                      A simple inertial interaction, similar to an object slowly accelerating to speed.

                      +

                      An inertial interaction, similar to an object slowly accelerating to speed.

                      http://cubic-bezier.com/#.42,0,1,1


                      quad()

                      @@ -184,7 +184,7 @@

                      elastic()

                      static elastic(bounciness)
                       
                      -

                      A simple elastic interaction, similar to a spring oscillating back and forth.

                      +

                      An elastic interaction, similar to a spring oscillating back and forth.

                      Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                      http://easings.net/#easeInElastic

                      Wolfram Plots:

                      @@ -196,7 +196,7 @@

                      back()

                      static back(s)
                       
                      -

                      Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                      +

                      Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                      Wolfram Plot:

                      • http://tiny.cc/back_default (s = 1.70158, default)
                      • @@ -205,7 +205,7 @@

                        bounce()

                        static bounce(t)
                         
                        -

                        Provides a simple bouncing effect.

                        +

                        Provides a bouncing effect.

                        http://easings.net/#easeInBounce


                        bezier()

                        diff --git a/docs/0.49/dimensions.html b/docs/0.49/dimensions.html index 93bd7d4167b..58959c20b94 100644 --- a/docs/0.49/dimensions.html +++ b/docs/0.49/dimensions.html @@ -82,7 +82,7 @@
                        static set(dims)
                         

                        This should only be called from native code by sending the didUpdateDimensions event.

                        -

                        @param {object} dims Simple string-keyed object of dimensions to set

                        +

                        @param {object} dims string-keyed object of dimensions to set


                        get()

                        static get(dim)
                        diff --git a/docs/0.49/dimensions/index.html b/docs/0.49/dimensions/index.html
                        index 93bd7d4167b..58959c20b94 100644
                        --- a/docs/0.49/dimensions/index.html
                        +++ b/docs/0.49/dimensions/index.html
                        @@ -82,7 +82,7 @@
                         
                        static set(dims)
                         

                        This should only be called from native code by sending the didUpdateDimensions event.

                        -

                        @param {object} dims Simple string-keyed object of dimensions to set

                        +

                        @param {object} dims string-keyed object of dimensions to set


                        get()

                        static get(dim)
                        diff --git a/docs/0.49/easing.html b/docs/0.49/easing.html
                        index df41927d1a7..c98a69848b3 100644
                        --- a/docs/0.49/easing.html
                        +++ b/docs/0.49/easing.html
                        @@ -73,10 +73,10 @@
                         

                        Predefined animations

                        The Easing module provides several predefined animations through the following methods:

                          -
                        • back provides a simple animation where the object goes slightly back before moving forward
                        • +
                        • back provides an animation where the object goes slightly back before moving forward
                        • bounce provides a bouncing animation
                        • -
                        • ease provides a simple inertial animation
                        • -
                        • elastic provides a simple spring interaction
                        • +
                        • ease provides an inertial animation
                        • +
                        • elastic provides a spring interaction

                        Standard functions

                        Three standard easing functions are provided:

                        @@ -142,7 +142,7 @@

                        ease()

                        static ease(t)
                         
                        -

                        A simple inertial interaction, similar to an object slowly accelerating to speed.

                        +

                        An inertial interaction, similar to an object slowly accelerating to speed.

                        http://cubic-bezier.com/#.42,0,1,1


                        quad()

                        @@ -184,7 +184,7 @@

                        elastic()

                        static elastic(bounciness)
                         
                        -

                        A simple elastic interaction, similar to a spring oscillating back and forth.

                        +

                        An elastic interaction, similar to a spring oscillating back and forth.

                        Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                        http://easings.net/#easeInElastic

                        Wolfram Plots:

                        @@ -196,7 +196,7 @@

                        back()

                        static back(s)
                         
                        -

                        Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                        +

                        Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                        Wolfram Plot:

                        • http://tiny.cc/back_default (s = 1.70158, default)
                        • @@ -205,7 +205,7 @@

                          bounce()

                          static bounce(t)
                           
                          -

                          Provides a simple bouncing effect.

                          +

                          Provides a bouncing effect.

                          http://easings.net/#easeInBounce


                          bezier()

                          diff --git a/docs/0.49/easing/index.html b/docs/0.49/easing/index.html index df41927d1a7..c98a69848b3 100644 --- a/docs/0.49/easing/index.html +++ b/docs/0.49/easing/index.html @@ -73,10 +73,10 @@

                          Predefined animations

                          The Easing module provides several predefined animations through the following methods:

                            -
                          • back provides a simple animation where the object goes slightly back before moving forward
                          • +
                          • back provides an animation where the object goes slightly back before moving forward
                          • bounce provides a bouncing animation
                          • -
                          • ease provides a simple inertial animation
                          • -
                          • elastic provides a simple spring interaction
                          • +
                          • ease provides an inertial animation
                          • +
                          • elastic provides a spring interaction

                          Standard functions

                          Three standard easing functions are provided:

                          @@ -142,7 +142,7 @@

                          ease()

                          static ease(t)
                           
                          -

                          A simple inertial interaction, similar to an object slowly accelerating to speed.

                          +

                          An inertial interaction, similar to an object slowly accelerating to speed.

                          http://cubic-bezier.com/#.42,0,1,1


                          quad()

                          @@ -184,7 +184,7 @@

                          elastic()

                          static elastic(bounciness)
                           
                          -

                          A simple elastic interaction, similar to a spring oscillating back and forth.

                          +

                          An elastic interaction, similar to a spring oscillating back and forth.

                          Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                          http://easings.net/#easeInElastic

                          Wolfram Plots:

                          @@ -196,7 +196,7 @@

                          back()

                          static back(s)
                           
                          -

                          Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                          +

                          Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                          Wolfram Plot:

                          • http://tiny.cc/back_default (s = 1.70158, default)
                          • @@ -205,7 +205,7 @@

                            bounce()

                            static bounce(t)
                             
                            -

                            Provides a simple bouncing effect.

                            +

                            Provides a bouncing effect.

                            http://easings.net/#easeInBounce


                            bezier()

                            diff --git a/docs/0.50/dimensions.html b/docs/0.50/dimensions.html index 45423ae7b81..5601424d38d 100644 --- a/docs/0.50/dimensions.html +++ b/docs/0.50/dimensions.html @@ -82,7 +82,7 @@
                            static set(dims)
                             

                            This should only be called from native code by sending the didUpdateDimensions event.

                            -

                            @param {object} dims Simple string-keyed object of dimensions to set

                            +

                            @param {object} dims string-keyed object of dimensions to set


                            get()

                            static get(dim)
                            diff --git a/docs/0.50/dimensions/index.html b/docs/0.50/dimensions/index.html
                            index 45423ae7b81..5601424d38d 100644
                            --- a/docs/0.50/dimensions/index.html
                            +++ b/docs/0.50/dimensions/index.html
                            @@ -82,7 +82,7 @@
                             
                            static set(dims)
                             

                            This should only be called from native code by sending the didUpdateDimensions event.

                            -

                            @param {object} dims Simple string-keyed object of dimensions to set

                            +

                            @param {object} dims string-keyed object of dimensions to set


                            get()

                            static get(dim)
                            diff --git a/docs/0.50/easing.html b/docs/0.50/easing.html
                            index 6e31213ea29..dd89f4c5af6 100644
                            --- a/docs/0.50/easing.html
                            +++ b/docs/0.50/easing.html
                            @@ -73,10 +73,10 @@
                             

                            Predefined animations

                            The Easing module provides several predefined animations through the following methods:

                              -
                            • back provides a simple animation where the object goes slightly back before moving forward
                            • +
                            • back provides an animation where the object goes slightly back before moving forward
                            • bounce provides a bouncing animation
                            • -
                            • ease provides a simple inertial animation
                            • -
                            • elastic provides a simple spring interaction
                            • +
                            • ease provides an inertial animation
                            • +
                            • elastic provides a spring interaction

                            Standard functions

                            Three standard easing functions are provided:

                            @@ -142,7 +142,7 @@

                            ease()

                            static ease(t)
                             
                            -

                            A simple inertial interaction, similar to an object slowly accelerating to speed.

                            +

                            An inertial interaction, similar to an object slowly accelerating to speed.

                            http://cubic-bezier.com/#.42,0,1,1


                            quad()

                            @@ -184,7 +184,7 @@

                            elastic()

                            static elastic(bounciness)
                             
                            -

                            A simple elastic interaction, similar to a spring oscillating back and forth.

                            +

                            An elastic interaction, similar to a spring oscillating back and forth.

                            Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                            http://easings.net/#easeInElastic

                            Wolfram Plots:

                            @@ -196,7 +196,7 @@

                            back()

                            static back(s)
                             
                            -

                            Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                            +

                            Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                            Wolfram Plot:

                            • http://tiny.cc/back_default (s = 1.70158, default)
                            • @@ -205,7 +205,7 @@

                              bounce()

                              static bounce(t)
                               
                              -

                              Provides a simple bouncing effect.

                              +

                              Provides a bouncing effect.

                              http://easings.net/#easeInBounce


                              bezier()

                              diff --git a/docs/0.50/easing/index.html b/docs/0.50/easing/index.html index 6e31213ea29..dd89f4c5af6 100644 --- a/docs/0.50/easing/index.html +++ b/docs/0.50/easing/index.html @@ -73,10 +73,10 @@

                              Predefined animations

                              The Easing module provides several predefined animations through the following methods:

                                -
                              • back provides a simple animation where the object goes slightly back before moving forward
                              • +
                              • back provides an animation where the object goes slightly back before moving forward
                              • bounce provides a bouncing animation
                              • -
                              • ease provides a simple inertial animation
                              • -
                              • elastic provides a simple spring interaction
                              • +
                              • ease provides an inertial animation
                              • +
                              • elastic provides a spring interaction

                              Standard functions

                              Three standard easing functions are provided:

                              @@ -142,7 +142,7 @@

                              ease()

                              static ease(t)
                               
                              -

                              A simple inertial interaction, similar to an object slowly accelerating to speed.

                              +

                              An inertial interaction, similar to an object slowly accelerating to speed.

                              http://cubic-bezier.com/#.42,0,1,1


                              quad()

                              @@ -184,7 +184,7 @@

                              elastic()

                              static elastic(bounciness)
                               
                              -

                              A simple elastic interaction, similar to a spring oscillating back and forth.

                              +

                              An elastic interaction, similar to a spring oscillating back and forth.

                              Default bounciness is 1, which overshoots a little bit once. 0 bounciness doesn't overshoot at all, and bounciness of N > 1 will overshoot about N times.

                              http://easings.net/#easeInElastic

                              Wolfram Plots:

                              @@ -196,7 +196,7 @@

                              back()

                              static back(s)
                               
                              -

                              Use with Animated.parallel() to create a simple effect where the object animates back slightly as the animation starts.

                              +

                              Use with Animated.parallel() to create an effect where the object animates back slightly as the animation starts.

                              Wolfram Plot:

                              • http://tiny.cc/back_default (s = 1.70158, default)
                              • @@ -205,7 +205,7 @@

                                bounce()

                                static bounce(t)
                                 
                                -

                                Provides a simple bouncing effect.

                                +

                                Provides a bouncing effect.

                                http://easings.net/#easeInBounce


                                bezier()

                                diff --git a/docs/0.51/dimensions.html b/docs/0.51/dimensions.html index 7299acc2a94..d8308f3ac16 100644 --- a/docs/0.51/dimensions.html +++ b/docs/0.51/dimensions.html @@ -82,7 +82,7 @@
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.51/dimensions/index.html b/docs/0.51/dimensions/index.html
                                index 7299acc2a94..d8308f3ac16 100644
                                --- a/docs/0.51/dimensions/index.html
                                +++ b/docs/0.51/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.52/dimensions.html b/docs/0.52/dimensions.html
                                index b957566f7cc..4c1b570c6c6 100644
                                --- a/docs/0.52/dimensions.html
                                +++ b/docs/0.52/dimensions.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.52/dimensions/index.html b/docs/0.52/dimensions/index.html
                                index b957566f7cc..4c1b570c6c6 100644
                                --- a/docs/0.52/dimensions/index.html
                                +++ b/docs/0.52/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.53/dimensions.html b/docs/0.53/dimensions.html
                                index 49a236e0bf3..08e3f0d036a 100644
                                --- a/docs/0.53/dimensions.html
                                +++ b/docs/0.53/dimensions.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.53/dimensions/index.html b/docs/0.53/dimensions/index.html
                                index 49a236e0bf3..08e3f0d036a 100644
                                --- a/docs/0.53/dimensions/index.html
                                +++ b/docs/0.53/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.54/dimensions.html b/docs/0.54/dimensions.html
                                index 9c2e533d5d1..81100be96c7 100644
                                --- a/docs/0.54/dimensions.html
                                +++ b/docs/0.54/dimensions.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.54/dimensions/index.html b/docs/0.54/dimensions/index.html
                                index 9c2e533d5d1..81100be96c7 100644
                                --- a/docs/0.54/dimensions/index.html
                                +++ b/docs/0.54/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.55/dimensions.html b/docs/0.55/dimensions.html
                                index 8d29d6b6480..4c1b252cc3d 100644
                                --- a/docs/0.55/dimensions.html
                                +++ b/docs/0.55/dimensions.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.55/dimensions/index.html b/docs/0.55/dimensions/index.html
                                index 8d29d6b6480..4c1b252cc3d 100644
                                --- a/docs/0.55/dimensions/index.html
                                +++ b/docs/0.55/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.56/dimensions.html b/docs/0.56/dimensions.html
                                index 4969d48517e..534ffce6861 100644
                                --- a/docs/0.56/dimensions.html
                                +++ b/docs/0.56/dimensions.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.56/dimensions/index.html b/docs/0.56/dimensions/index.html
                                index 4969d48517e..534ffce6861 100644
                                --- a/docs/0.56/dimensions/index.html
                                +++ b/docs/0.56/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.57/dimensions.html b/docs/0.57/dimensions.html
                                index 1a07ef07233..19899a982a7 100644
                                --- a/docs/0.57/dimensions.html
                                +++ b/docs/0.57/dimensions.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)
                                diff --git a/docs/0.57/dimensions/index.html b/docs/0.57/dimensions/index.html
                                index 1a07ef07233..19899a982a7 100644
                                --- a/docs/0.57/dimensions/index.html
                                +++ b/docs/0.57/dimensions/index.html
                                @@ -82,7 +82,7 @@
                                 
                                static set(dims)
                                 

                                This should only be called from native code by sending the didUpdateDimensions event.

                                -

                                @param {object} dims Simple string-keyed object of dimensions to set

                                +

                                @param {object} dims string-keyed object of dimensions to set


                                get()

                                static get(dim)