Skip to content
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

Profile Card Style Refactor #176

Open
wants to merge 33 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8e7eba5
feat: new branch added
ankitmlesmagico Jul 22, 2024
c00c8f9
feat: add input, loader, spinner molecules
Jul 24, 2024
e42a63c
feat:modal, blinker added
Jul 25, 2024
ed6a31c
feat:modal is completed
Jul 25, 2024
196f95f
added new molecules for share buttons sidebar navbar
riya-2206 Jul 25, 2024
0ed2ff4
feat: transliteral input box added
Jul 29, 2024
0757cc3
added login input and login form component
riya-2206 Jul 30, 2024
8c42d89
added login input and login form component
riya-2206 Jul 30, 2024
b262363
Merge pull request #167 from SamagraX-Stencil/feat/new_buttons_sideba…
ankitmlesmagico Jul 30, 2024
5b54fac
fix: styling of all new molecule
Jul 30, 2024
8640c27
Merge branch 'feat/new_molecule' of https://github.com/SamagraX-Stenc…
Jul 30, 2024
55a86fd
chore: added newNavbar style props
biratdatta Jul 30, 2024
9e23eb9
style: newSidebar
biratdatta Jul 30, 2024
e83a8b9
style: added newshare buttons
biratdatta Jul 30, 2024
426c2c4
Merge pull request #168 from SamagraX-Stencil/style/new_buttons_sideb…
ankitmlesmagico Jul 31, 2024
21a42c6
voiceRecorder Implementation
biratdatta Jul 31, 2024
d84fd04
Merge pull request #170 from SamagraX-Stencil/style/new_buttons_sideb…
ankitmlesmagico Jul 31, 2024
20efce1
feat: feedback and list
biratdatta Jul 31, 2024
2f5f82f
chore: added feedback component
biratdatta Jul 31, 2024
0630376
Merge pull request #171 from SamagraX-Stencil/feat/feedbackmol
ankitmlesmagico Jul 31, 2024
f8e091d
feat: new loginComponent
Aug 2, 2024
0686999
fix: loader
Aug 2, 2024
d436a7d
update new project
Aug 5, 2024
26fd277
fix: bot version
Aug 5, 2024
29a19a6
fix: molecule version
Aug 5, 2024
2fb2103
exam section and accordian card added
tgBuntikki Aug 6, 2024
2fed2d6
feat: langu picker
Aug 6, 2024
b5b15cf
fix: update feedback molecule
Aug 6, 2024
236d333
feat: table to json and blincker
Aug 7, 2024
bfdba68
Merge pull request #174 from SamagraX-Stencil/Dynamic_molecule
ankitmlesmagico Aug 7, 2024
e935616
Profile molecules adding
tgBuntikki Aug 8, 2024
f19d8dd
Merge pull request #175 from SamagraX-Stencil/profile_card
ankitmlesmagico Aug 8, 2024
772ba15
Profile Card Style Refactor
tgBuntikki Aug 8, 2024
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
48 changes: 48 additions & 0 deletions apps/all-molecule-app/app/final-molecules/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
'use client'
import React, { useCallback, useState } from 'react'
import { Box, Container, IconButton } from '@mui/material'
import { useMemo } from 'react'
import ForumIcon from '@mui/icons-material/Forum'
import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline'
import { SelectChangeEvent } from '@mui/material/Select'

import { InputComponent } from '@samagra-x/stencil-molecules'
import { Navbar } from '@samagra-x/stencil-molecules'
import { Button } from '@samagra-x/stencil-chatui'

const Components = () => {
return (
<Box
style={{ background: 'lightgray', height: '90vh', overflow: 'scroll' }}
className="bg-light"
>
<FinalInputComponent />
</Box>
)
}

const FinalInputComponent = () => {
const [loginInput, setLoginInput] = useState('')
const handleNextButtonTask = async () => {
return 'success'
}
return (
<Container style={{ marginTop: '30px', marginBottom: '20px' }}>
<h4> Final Input Component</h4>
<InputComponent
handleNextTask={handleNextButtonTask}
onChange={setLoginInput}
placeholder="Enter UserName*"
type="otp"
value={loginInput}
buttonText="login"
title="Welcome !"
mobileNumberForOtpScreen={'9907799970'}
optBoxSeparator={<>-</>}
passWordPlaceholder="Enter Password"
/>
</Container>
)
}

export default Components
Loading