Update git submodules

* Update frameworks/support from branch 'androidx-main'
  to 033cb2babaee5cd50fc369cd4ac2b6b8f9f56feb
  - Merge changes from topic "nav3-popTransition" into androidx-main
    
    * changes:
      Remove Dialog from NavDisplay
      Implement popTransitions in NavDisplay
      Add AnimatedNavDisplay popTransition
    
  - Remove Dialog from NavDisplay
    
    NavDisplay will no longer handle Dialogs in order to scope NavDisplay to handle only a single panel in a single screen.
    
    To show dialogs, users are expected to call Dialog composables outside of NavHost. Users can also create and manage a backstack of Dialogs with a custom NavDisplay.
    
    Test: ./gradlew navigation3:navigation3:cC
    Bug: 389974333
    Relnote: "NavDisplay will no longer handle Dialogs. To show dialogs, call Dialog composables outside of NavHost or with a custom NavDisplay."
    Change-Id: Id45340ff3c7e2b468d2079edac4dad572dbed9db
    
  - Implement popTransitions in NavDisplay
    
    This implementation only applies to non-Dialog NavEntries. The implementation for Dialog will follow.
    
    The backstack as a List means users can manipulate the backstack at any position. They can make changes in the middle without changing the top-most entry. Or they can change entries at random positions with an actual pop at the end.
    
    As a ground rule in this implementation, a backstack operation is treated as a pop only if the newBackStack is a proper subset (subset but not equal) of oldBackStack.
    
    Test: ./gradlew navigation3:navigation3:cC
    Bug: 389974333
    Relnote: "Users can now apply animations when popping NavEntries by providing popTransition through NavDisplay or NavEntry.featureMap."
    Change-Id: I22077a92037e759e3364a59d0143a51951f89fca
    
  - Add AnimatedNavDisplay popTransition
    
    Allows users to define pop animations through NavRecord.featureMap when the record is being popped from the backstack.
    
    Bug: 389974333
    Test: n/a
    Relnote: "Users can now use AnimatedNavDisplay.popTransition to define the pop animations for a NavRecord when popping from the backstack."
    Change-Id: I2247815153e174444a5b82e3de4fe158d205f031
    
1 file changed