Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/apps/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@hookform/resolvers": "^3.0.1",
"@radix-ui/react-form": "^0.1.8",
"@radix-ui/react-icons": "^1.3.0",
"@raystack/apsara": "1.0.0-rc.6",
"@raystack/apsara": "1.0.0-rc.8",
"@raystack/frontier": "workspace:^",
"@raystack/proton": "0.1.0-859ba765e6cfd44736ddcf42664b742fe7fd916e",
"@stitches/react": "^1.2.8",
Expand Down
2 changes: 1 addition & 1 deletion web/apps/admin/src/components/assign-role.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const AssignRole = ({

return (
<Dialog open onOpenChange={onClose}>
<Dialog.Content width={400}>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Assign Role</Dialog.Title>
<Dialog.CloseButton data-test-id="assign-role-close-button" />
Expand Down
2 changes: 1 addition & 1 deletion web/apps/client-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@raystack/apsara": "1.0.0-rc.6",
"@raystack/apsara": "1.0.0-rc.8",
"@raystack/frontier": "workspace:^",
"react": "^19.2.1",
"react-dom": "^19.2.1",
Expand Down
74 changes: 53 additions & 21 deletions web/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/sdk/admin/components/AssignRole.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const AssignRole = ({

return (
<Dialog open onOpenChange={onClose}>
<Dialog.Content width={400}>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Assign Role</Dialog.Title>
</Dialog.Header>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const AddTokensDialog = ({ onOpenChange }: InviteUsersDialogProps) => {

return (
<Dialog open onOpenChange={onOpenChange}>
<Dialog.Content width={400}>
<Dialog.Content>
<FormProvider {...methods}>
<form onSubmit={methods.handleSubmit(onSubmit)}>
<Dialog.Header>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const RemoveMember = ({

return (
<Dialog open onOpenChange={onClose}>
<Dialog.Content width={400}>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Remove {t.member({ case: "capital" })}</Dialog.Title>
<Dialog.CloseButton data-test-id="remove-member-close-button" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export const AssignRole = ({
return (
<Dialog open onOpenChange={onClose}>
<Dialog.Content
width={400}
overlay={{ className: styles["action-dialog-overlay"] }}
className={styles["action-dialog-content"]}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const RemoveMember = ({
return (
<AlertDialog open onOpenChange={onClose}>
<AlertDialog.Content
width={400}
overlay={{ className: styles["action-dialog-overlay"] }}
className={styles["action-dialog-content"]}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export function RenameProjectDialog({
return (
<Dialog open onOpenChange={onClose}>
<Dialog.Content
width={400}
onClick={preventClickPropagation}
data-test-id="rename-project-dialog"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ const BlockOrganizationDialog = () => {
</Button>
}
/>
<AlertDialog.Content width={400} aria-label="Block Organization">
<AlertDialog.Body>
<AlertDialog.Content aria-label="Block Organization">
<AlertDialog.Header>
<AlertDialog.Title>{componentConfig.dialogTitle}</AlertDialog.Title>
<AlertDialog.Description>
{componentConfig.dialogDescription}
</AlertDialog.Description>
</AlertDialog.Body>
</AlertDialog.Header>
<AlertDialog.Footer>
<AlertDialog.Close
render={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ const DeleteDomainDialog = ({
</IconButton>
}
/>
<AlertDialog.Content width={400}>
<AlertDialog.Body>
<AlertDialog.Content>
<AlertDialog.Header>
<AlertDialog.Title>Delete email domain</AlertDialog.Title>
<AlertDialog.Description>
Are you sure you want to delete this email domain?
</AlertDialog.Description>
</AlertDialog.Body>
</AlertDialog.Header>
<AlertDialog.Footer>
<AlertDialog.Close
render={
Expand Down
2 changes: 1 addition & 1 deletion web/sdk/admin/views/users/details/layout/suspend-user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const SuspendUser = ({

return (
<Dialog open onOpenChange={onClose}>
<Dialog.Content width={400}>
<Dialog.Content>
<Dialog.Body>
<Flex direction="column" gap={3}>
<Dialog.Title>Suspend {t.user({ case: "capital" })}</Dialog.Title>
Expand Down
6 changes: 3 additions & 3 deletions web/sdk/admin/views/users/details/security/block-user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ export const BlockUserDialog = () => {
</Button>
}
/>
<AlertDialog.Content width={400} aria-label={config.dialogTitle}>
<AlertDialog.Body>
<AlertDialog.Content aria-label={config.dialogTitle}>
<AlertDialog.Header>
<AlertDialog.Title>{config.dialogTitle}</AlertDialog.Title>
<AlertDialog.Description>{config.dialogDescription}</AlertDialog.Description>
</AlertDialog.Body>
</AlertDialog.Header>
<AlertDialog.Footer>
<AlertDialog.Close
render={
Expand Down
2 changes: 1 addition & 1 deletion web/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@connectrpc/connect-query": "2.1.1",
"@connectrpc/connect-web": "2.1.1",
"@hookform/resolvers": "^3.10.0",
"@raystack/apsara-v1": "npm:@raystack/apsara@1.0.0-rc.6",
"@raystack/apsara-v1": "npm:@raystack/apsara@1.0.0-rc.8",
"@raystack/proton": "0.1.0-859ba765e6cfd44736ddcf42664b742fe7fd916e",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-router": "^1.168.3",
Expand Down
4 changes: 4 additions & 0 deletions web/sdk/react/assets/inbox-stack.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions web/sdk/react/assets/user-minus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion web/sdk/react/components/image-upload/image-upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function CropDialog({ open, onOpenChange, imgSrc, onSave }: CropDialogProps) {

return (
<Dialog open={open} onOpenChange={onOpenChange}>
<Dialog.Content width={600}>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Crop your photo</Dialog.Title>
</Dialog.Header>
Expand Down
Loading
Loading