Skip to content

Commit

Permalink
Update props for LWS component (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewilson01 committed Oct 24, 2023
1 parent 4c9fb31 commit e53621b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .changeset/neat-walls-matter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@shopify/ui-extensions': patch
'@shopify/ui-extensions-react': patch
---

Update props for LoginWithShop component
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {createRemoteComponent} from '@remote-ui/core';

export interface LoginWithShopProps {
checked: boolean;
modalTitle?: string;
modalDescription?: string;
modalLogoSrc?: string;
apiKey?: string;
open: boolean;
modalTitle: string;
modalDescription: string;
modalLogoSrc: string;
modalCancelText: string;
onComplete?(): void | Promise<void>;
onClosed?(): void;
onStatusChange?(status: 'shop_pay' | 'guest' | 'shop_pay_skipped'): void;
Expand Down

0 comments on commit e53621b

Please sign in to comment.