Skip to content

Releases: aws-amplify/amplify-ui

@aws-amplify/[email protected]

22 Nov 19:14
c14b51e

Choose a tag to compare

Patch Changes

@aws-amplify/[email protected]

22 Nov 23:21
3f6cb97

Choose a tag to compare

Patch Changes

@aws-amplify/[email protected]

22 Nov 19:14
c14b51e

Choose a tag to compare

Patch Changes

@aws-amplify/[email protected]

22 Nov 23:21
3f6cb97

Choose a tag to compare

Patch Changes

@aws-amplify/[email protected]

22 Nov 19:14
c14b51e

Choose a tag to compare

Minor Changes

Patch Changes

@aws-amplify/[email protected]

22 Nov 23:21
3f6cb97

Choose a tag to compare

Patch Changes

@aws-amplify/[email protected]

22 Nov 19:14
c14b51e

Choose a tag to compare

Minor Changes

Patch Changes

@aws-amplify/[email protected]

22 Nov 23:21
3f6cb97

Choose a tag to compare

Patch Changes

@aws-amplify/[email protected]

22 Nov 19:14
c14b51e

Choose a tag to compare

Minor Changes

  • #2817 01cf6d2f8 Thanks @wlee221! - Expose subscribe from AuthenticatorService.

    @Component()
    class MyComponent implements OnInit, OnDelete {
      private unsubscribe: () => void;
      constructor(private authenticator: Authenticator, private route: Router) {}
    
      ngOnInit() {
        this.unsubscribe = authenticator.subscribe(({ authStatus }) => {
          if (authStatus === 'authenticated') {
            this.router.navigate(['/admin']);
          }
        }).unsubscribe;
      }
    
      ngOnDelete() {
        this.unsubscribe();
      }
    }

Patch Changes

@aws-amplify/[email protected]

17 Nov 00:32
448f989

Choose a tag to compare

Patch Changes

  • #3000 72c2c5d83 Thanks @ioanabrooks! - Updates the useDataStore hook to generate the predicates according to the new syntax.

  • #2964 ee4b37b6d Thanks @ioanabrooks! - Fixes an issue where the Button loading spinner is not rendered unless the loadingText prop is supplied.