Skip to content

Commit 55753a7

Browse files
authored
Merge pull request #6177 from nganphan123/select-component-doc
[Sistent] Select component doc
2 parents 6906a1b + 31dd0ba commit 55753a7

4 files changed

Lines changed: 996 additions & 14 deletions

File tree

src/sections/Projects/Sistent/components/content.js

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,114 +3,122 @@ const componentsData = [
33
id: 1,
44
name: "Button",
55
description:
6-
"A button is an interactive element that triggers a specific action and also lets users know what will happen next.",
6+
"A button is an interactive element that triggers a specific action and also lets users know what will happen next.",
77
url: "/projects/sistent/components/button",
88
src: "/button",
99
},
1010
{
1111
id: 2,
1212
name: "Text Input",
1313
description:
14-
"A text input is made up of multiple elements that combine to form a component that helps users to read, write, and edit text in an interface.",
14+
"A text input is made up of multiple elements that combine to form a component that helps users to read, write, and edit text in an interface.",
1515
url: "/projects/sistent/components/text-input",
1616
src: "/text-input",
1717
},
1818
{
1919
id: 3,
2020
name: "Modal",
2121
description:
22-
"A text input is made up of multiple elements that combine to form a component that helps users to read, write, and edit text in an interface.",
22+
"A text input is made up of multiple elements that combine to form a component that helps users to read, write, and edit text in an interface.",
2323
url: "/projects/sistent/components/modal",
2424
src: "/modal",
2525
},
2626
{
2727
id: 4,
2828
name: "Paper",
2929
description:
30-
"The Paper component offers an elevated surface with shadow effects, following Material Design’s elevation system.",
30+
"The Paper component offers an elevated surface with shadow effects, following Material Design’s elevation system.",
3131
url: "/projects/sistent/components/paper",
3232
src: "/paper",
3333
},
3434
{
3535
id: 5,
3636
name: "Popper",
3737
description:
38-
"A popper is a tooltip that appears when a user interacts with an element.",
38+
"A popper is a tooltip that appears when a user interacts with an element.",
3939
url: "/projects/sistent/components/popper",
4040
src: "/popper",
4141
},
4242
{
4343
id: 6,
4444
name: "Text Field",
4545
description:
46-
"The TextField component is a versatile input field used to capture user input in forms and user interfaces.",
46+
"The TextField component is a versatile input field used to capture user input in forms and user interfaces.",
4747
url: "/projects/sistent/components/text-field",
4848
src: "/text-field",
4949
},
5050
{
5151
id: 7,
5252
name: "Link",
5353
description:
54-
"Links are essential and integral components of an interface. They are primarily used for navigation, guiding users to the next step in a journey or redirecting them to relevant sections or pages.",
54+
"Links are essential and integral components of an interface. They are primarily used for navigation, guiding users to the next step in a journey or redirecting them to relevant sections or pages.",
5555
url: "/projects/sistent/components/link",
5656
src: "/link",
5757
},
5858
{
5959
id: 8,
6060
name: "Container",
6161
description:
62-
"Containers align and center content, providing responsive layout options for different screen sizes.",
62+
"Containers align and center content, providing responsive layout options for different screen sizes.",
6363
url: "/projects/sistent/components/container",
6464
src: "/container",
6565
},
6666
{
6767
id: 9,
6868
name: "ButtonGroup",
6969
description:
70-
"ButtonGroup is a component that groups multiple buttons together.",
70+
"ButtonGroup is a component that groups multiple buttons together.",
7171
url: "/projects/sistent/components/button-group",
7272
src: "/button-group",
7373
},
7474
{
7575
id: 10,
7676
name: "Box",
7777
description:
78-
"Box is used as a flexible container for layout and styling, allowing quick customization and responsive design adjustments.",
78+
"Box is used as a flexible container for layout and styling, allowing quick customization and responsive design adjustments.",
7979
url: "/projects/sistent/components/box",
8080
src: "/box",
8181
},
8282
{
8383
id: 11,
8484
name: "Tooltip",
8585
description:
86-
"The Tooltip component is a small pop-up box that appears when a user hovers over an element.",
86+
"The Tooltip component is a small pop-up box that appears when a user hovers over an element.",
8787
url: "/projects/sistent/components/tooltip",
8888
src: "/tooltip",
8989
},
9090
{
9191
id: 12,
9292
name: "Backdrop",
9393
description:
94-
"Backdrop component overlays a dimmed screen to focus attention on foreground content.",
94+
"Backdrop component overlays a dimmed screen to focus attention on foreground content.",
9595
url: "/projects/sistent/components/backdrop",
9696
src: "/backdrop",
9797
},
9898
{
9999
id: 13,
100100
name: "ToggleButton",
101101
description:
102-
"ToggleButton allows users to switch between two or more states, commonly used in forms or settings for quick toggles.",
102+
"ToggleButton allows users to switch between two or more states, commonly used in forms or settings for quick toggles.",
103103
url: "/projects/sistent/components/toggle-button",
104104
src: "/toggle-button",
105105
},
106106
{
107107
id: 14,
108108
name: "Pagination",
109109
description:
110-
"Pagination enables users to navigate through multiple pages of content, providing an intuitive interface for browsing large datasets or segmented information.",
110+
"Pagination enables users to navigate through multiple pages of content, providing an intuitive interface for browsing large datasets or segmented information.",
111111
url: "/projects/sistent/components/pagination",
112112
src: "/pagination",
113113
},
114+
{
115+
id: 15,
116+
name: "Select",
117+
description:
118+
"Select component is a dropdown menu for selecting an option from a list.",
119+
url: "/projects/sistent/components/select",
120+
src: "/select",
121+
},
114122
];
115123

116124
module.exports = { componentsData };

0 commit comments

Comments
 (0)