Skip to content

Resolved Bug 2016 : Design System >The English name needs to be added everywhere #2043

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all 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
52 changes: 26 additions & 26 deletions raaghu-elements/src/rds-chat/rds-chat.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ export const Default: Story = {
isChatScreenEnabled: true,
userData: [
{
firstName: 'Wai',
lastName: 'Technologies',
firstName: "Wai",
lastName: "Technologies",
activeDotButton: true,
status: 'Typing....',
status: "Typing....",
size: "medium",
colorVariant: "primary",
time: '13.00',
profilePic: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSJxA5cTf-5dh5Eusm0puHbvAhOrCRPtckzjA&usqp=CAU',
profileType: 'icon',
time: "13.00",
profilePic: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSJxA5cTf-5dh5Eusm0puHbvAhOrCRPtckzjA&usqp=CAU",
profileType: "icon",
withProfilePic: true,
messageStatus: '',
messageStatus: "",
comments: [
{
firstName: "Alice",
Expand All @@ -43,39 +43,39 @@ export const Default: Story = {
]
},
{
firstName: 'Nikhil',
lastName: 'Kasar',
firstName: "John",
lastName: "Dow",
activeDotButton: false,
status: 'Developer',
status: "Developer",
size: "medium",
colorVariant: "primary",
time: '13.00',
profilePic: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0m5Cy4lXCbuyG54L0vuo3i5-ALavHe9KmhWA_wDM&s',
messageStatus: '',
profileType: 'icon',
time: "13.00",
profilePic: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0m5Cy4lXCbuyG54L0vuo3i5-ALavHe9KmhWA_wDM&s",
messageStatus: "",
profileType: "icon",
withProfilePic: true,
comments: []
},
{
firstName: 'Supriya',
lastName: 'Tambe',
firstName: "Smith",
lastName: "Hense",
activeDotButton: false,
status: 'Company Owner',
status: "Company Owner",
size: "medium",
colorVariant: "primary",
time: '13.00',
profilePic: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0m5Cy4lXCbuyG54L0vuo3i5-ALavHe9KmhWA_wDM&s',
messageStatus: '',
profileType: 'icon',
time: "13.00",
profilePic: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0m5Cy4lXCbuyG54L0vuo3i5-ALavHe9KmhWA_wDM&s",
messageStatus: "",
profileType: "icon",
withProfilePic: true,
comments: []
}
],
currentUserCommentBgColor: '#7825E9',
currentUserCommentTextColor: '#FEF7FF',
otherUserCommentBgColor: '#E1E3EA',
OtherUserCommentTextColor: '#202020',
handleAddComment: (comment) => console.log('Comment added:', comment),
currentUserCommentBgColor: "#7825E9",
currentUserCommentTextColor: "#FEF7FF",
otherUserCommentBgColor: "#E1E3EA",
OtherUserCommentTextColor: "#202020",
handleAddComment: (comment) => console.log("Comment added:", comment),
}
} satisfies Story;

Expand Down
Loading