diff --git a/public/bg.svg b/public/bg.svg deleted file mode 100644 index 414e959a..00000000 --- a/public/bg.svg +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png deleted file mode 100644 index aec26936..00000000 Binary files a/public/favicon-16x16.png and /dev/null differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png deleted file mode 100644 index 3626f132..00000000 Binary files a/public/favicon-32x32.png and /dev/null differ diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index 35f4e677..00000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 00000000..984d1ebe --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/front/Components/DesignSystem/Document/DocumentNotary/classes.module.scss b/src/front/Components/DesignSystem/Document/DocumentNotary/classes.module.scss index e1c4d15d..5b0aaa3a 100644 --- a/src/front/Components/DesignSystem/Document/DocumentNotary/classes.module.scss +++ b/src/front/Components/DesignSystem/Document/DocumentNotary/classes.module.scss @@ -6,7 +6,7 @@ display: flex; justify-content: space-between; align-items: center; - &.DEPOSITED{ + &.PENDING{ border-color: $orange-soft; } &.VALIDATED{ diff --git a/src/front/Components/DesignSystem/Elements/FolderBoxInformation/classes.module.scss b/src/front/Components/DesignSystem/FolderBoxInformation/classes.module.scss similarity index 100% rename from src/front/Components/DesignSystem/Elements/FolderBoxInformation/classes.module.scss rename to src/front/Components/DesignSystem/FolderBoxInformation/classes.module.scss diff --git a/src/front/Components/DesignSystem/Elements/FolderBoxInformation/index.tsx b/src/front/Components/DesignSystem/FolderBoxInformation/index.tsx similarity index 97% rename from src/front/Components/DesignSystem/Elements/FolderBoxInformation/index.tsx rename to src/front/Components/DesignSystem/FolderBoxInformation/index.tsx index a57459e8..670d96d8 100644 --- a/src/front/Components/DesignSystem/Elements/FolderBoxInformation/index.tsx +++ b/src/front/Components/DesignSystem/FolderBoxInformation/index.tsx @@ -4,7 +4,7 @@ import classNames from "classnames"; import Image from "next/image"; import PenICon from "@Assets/Icons/pen.svg"; import { IDashBoardFolder } from "@Front/Components/LayoutTemplates/DefaultNotaryDashboard"; -import Typography, { ITypo } from "../../Typography"; +import Typography, { ITypo } from "../Typography"; type IProps = { folder: IDashBoardFolder; diff --git a/src/front/Components/DesignSystem/Modal/index.tsx b/src/front/Components/DesignSystem/Modal/index.tsx index 7d4fd830..8f2a75ff 100644 --- a/src/front/Components/DesignSystem/Modal/index.tsx +++ b/src/front/Components/DesignSystem/Modal/index.tsx @@ -28,7 +28,7 @@ type IState = { export default class Modal extends React.Component { static defaultProps = { - animationDelay: 170 + animationDelay: 250 }; public rootRefElement = React.createRef(); constructor(props: IProps) { diff --git a/src/front/Components/DesignSystem/Materials/MultiSelect/classes.module.scss b/src/front/Components/DesignSystem/MultiSelect/classes.module.scss similarity index 100% rename from src/front/Components/DesignSystem/Materials/MultiSelect/classes.module.scss rename to src/front/Components/DesignSystem/MultiSelect/classes.module.scss diff --git a/src/front/Components/DesignSystem/Materials/MultiSelect/index.tsx b/src/front/Components/DesignSystem/MultiSelect/index.tsx similarity index 93% rename from src/front/Components/DesignSystem/Materials/MultiSelect/index.tsx rename to src/front/Components/DesignSystem/MultiSelect/index.tsx index 6955dd47..cdbd6e27 100644 --- a/src/front/Components/DesignSystem/Materials/MultiSelect/index.tsx +++ b/src/front/Components/DesignSystem/MultiSelect/index.tsx @@ -3,8 +3,8 @@ import ReactSelect, { ActionMeta, MultiValue, Options, PropsValue } from "react- import { styles } from "./styles"; import classes from "./classes.module.scss"; -import { IOption } from "../../Select"; -import Typography, { ITypo } from "../../Typography"; +import { IOption } from "../Select"; +import Typography, { ITypo } from "../Typography"; import classNames from "classnames"; diff --git a/src/front/Components/DesignSystem/Materials/MultiSelect/styles.tsx b/src/front/Components/DesignSystem/MultiSelect/styles.tsx similarity index 92% rename from src/front/Components/DesignSystem/Materials/MultiSelect/styles.tsx rename to src/front/Components/DesignSystem/MultiSelect/styles.tsx index eef1b423..50875367 100644 --- a/src/front/Components/DesignSystem/Materials/MultiSelect/styles.tsx +++ b/src/front/Components/DesignSystem/MultiSelect/styles.tsx @@ -45,9 +45,11 @@ export const styles = { border: "1px solid black", borderRadius: "100px", }), - MultiValueGeneric: (provided: any) => ({ + multiValueLabel: (provided: any) => ({ ...provided, - color: "red", + fontSize: "16px", + color: "#939393", + fontWeight: "400", }), input: (provided: any) => ({ ...provided, @@ -81,6 +83,10 @@ export const styles = { "&:hover": { color: "grey", backgroundColor: "transparent", + }, + ">svg": { + width: "16px", + height: "16px", } }), indicatorsContainer: (provided: any) => ({ diff --git a/src/front/Components/DesignSystem/Select/classes.module.scss b/src/front/Components/DesignSystem/Select/classes.module.scss index 18b7b280..9adffd00 100644 --- a/src/front/Components/DesignSystem/Select/classes.module.scss +++ b/src/front/Components/DesignSystem/Select/classes.module.scss @@ -15,13 +15,13 @@ background-color: $white; cursor: pointer; padding: 24px; - z-index: 2; + z-index: 1; &[data-border-right-collapsed="true"] { border-radius: 8px 0 0 8px; } - .container-input { + .container-input chevron-icon{ display: flex; align-items: center; @@ -53,9 +53,10 @@ fill: $grey; transition: all 350ms $custom-easing; + transform: rotate(90deg); &[data-open="true"] { - transform: rotate(90deg); + transform: rotate(-90deg); } } } diff --git a/src/front/Components/DesignSystem/UserFolder/UserFolderHeader/index.tsx b/src/front/Components/DesignSystem/UserFolder/UserFolderHeader/index.tsx index 3bbc10f4..2ff60624 100644 --- a/src/front/Components/DesignSystem/UserFolder/UserFolderHeader/index.tsx +++ b/src/front/Components/DesignSystem/UserFolder/UserFolderHeader/index.tsx @@ -43,7 +43,7 @@ export default class UserFolderHeader extends React.Component {
- edit + edit
; } @@ -56,4 +56,8 @@ export default class UserFolderHeader extends React.Component { }); return output.join(""); } + + private onEditClick(): void { + // console.log("edit"); + } } diff --git a/src/front/Components/DesignSystem/UserFolder/classes.module.scss b/src/front/Components/DesignSystem/UserFolder/classes.module.scss index aac5a2d0..c92113bd 100644 --- a/src/front/Components/DesignSystem/UserFolder/classes.module.scss +++ b/src/front/Components/DesignSystem/UserFolder/classes.module.scss @@ -29,6 +29,7 @@ display: flex; align-items: center; justify-content: space-between; + cursor: pointer; .chevron-icon { margin-left: 16px; diff --git a/src/front/Components/DesignSystem/UserFolder/index.tsx b/src/front/Components/DesignSystem/UserFolder/index.tsx index ee196f7f..c57c3a1b 100644 --- a/src/front/Components/DesignSystem/UserFolder/index.tsx +++ b/src/front/Components/DesignSystem/UserFolder/index.tsx @@ -59,7 +59,7 @@ export default class UserFolder extends React.Component { Êtes-vous vous de vouloir supprimer la demande de document ? -
+
chevron open close diff --git a/src/front/Components/LayoutTemplates/DefaultLayout.tsx b/src/front/Components/LayoutTemplates/DefaultLayout.tsx index e85fca61..2676be82 100644 --- a/src/front/Components/LayoutTemplates/DefaultLayout.tsx +++ b/src/front/Components/LayoutTemplates/DefaultLayout.tsx @@ -7,7 +7,7 @@ export const DefaultLayout = ({ children }: DefaultLayoutProps) => { <> LECoffre - + {/* */}
{children}
diff --git a/src/front/Components/Layouts/DesignSystem/index.tsx b/src/front/Components/Layouts/DesignSystem/index.tsx index f60aee8c..000c20e0 100644 --- a/src/front/Components/Layouts/DesignSystem/index.tsx +++ b/src/front/Components/Layouts/DesignSystem/index.tsx @@ -17,7 +17,7 @@ import { customer2, document, documentDeposited, documentPending, folder, folder import DocumentNotary from "@Front/Components/DesignSystem/Document/DocumentNotary"; import Select, { IOption } from "@Front/Components/DesignSystem/Select"; import UserFolder from "@Front/Components/DesignSystem/UserFolder"; -import MultiSelect from "@Front/Components/DesignSystem/Materials/MultiSelect"; +import MultiSelect from "@Front/Components/DesignSystem/MultiSelect"; import SearchBar from "@Front/Components/DesignSystem/SearchBar"; import FolderList from "@Front/Components/DesignSystem/FolderListContainer"; @@ -47,8 +47,6 @@ export default class DesignSystem extends BasePage { { value: "2", label: "Succession" }, { value: "3", label: "Vente immobilière" }, ] - - return (
@@ -172,7 +170,7 @@ export default class DesignSystem extends BasePage {
Folder with no document to validate
- +
@@ -225,7 +223,7 @@ export default class DesignSystem extends BasePage { Notary Documents
- +
diff --git a/src/front/Components/Layouts/Folder/index.tsx b/src/front/Components/Layouts/Folder/index.tsx index e08b3abb..98205d35 100644 --- a/src/front/Components/Layouts/Folder/index.tsx +++ b/src/front/Components/Layouts/Folder/index.tsx @@ -3,7 +3,7 @@ import BasePage from "../Base"; import Typography, { ITypo, ITypoColor } from "@Front/Components/DesignSystem/Typography"; import classes from "./classes.module.scss"; import Button, { EButtonVariant } from "@Front/Components/DesignSystem/Button"; -import FolderBoxInformation from "@Front/Components/DesignSystem/Elements/FolderBoxInformation"; +import FolderBoxInformation from "@Front/Components/DesignSystem/FolderBoxInformation"; import QuantityProgressBar from "@Front/Components/DesignSystem/QuantityProgressBar"; import ClientSection from "./ClientSection"; import ChevronIcon from "@Assets/Icons/chevron.svg"; @@ -64,7 +64,6 @@ export default class Folder extends BasePage{ } public override async componentDidMount() { // const users = await Users.getInstance().getByUid("5rOlvAleeX"); - // console.log(users); } private doesFolderHaveCustomer(): boolean { diff --git a/src/front/index.scss b/src/front/index.scss index b94f62a6..9e45c9ca 100644 --- a/src/front/index.scss +++ b/src/front/index.scss @@ -17,7 +17,7 @@ body { } input { - font-size: 14px; + font-size: 18px; } ::placeholder {