@lunit/design-system 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Alert/index.js +1 -1
- package/dist/cjs/components/Alert/index.js.map +1 -1
- package/dist/cjs/components/Button/index.js +1 -1
- package/dist/cjs/components/Button/index.js.map +1 -1
- package/dist/cjs/components/Checkbox/index.js +1 -1
- package/dist/cjs/components/Checkbox/index.js.map +1 -1
- package/dist/cjs/components/Dialog/index.js +2 -0
- package/dist/cjs/components/Dialog/index.js.map +1 -0
- package/dist/cjs/components/Radio/index.js +1 -1
- package/dist/cjs/components/Radio/index.js.map +1 -1
- package/dist/cjs/components/ToggleButton/index.js +1 -1
- package/dist/cjs/components/ToggleButton/index.js.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/components/Button/Button.styled.js +1 -1
- package/dist/components/Button/Button.styled.js.map +1 -1
- package/dist/components/Checkbox/Checkbox.js +9 -19
- package/dist/components/Checkbox/Checkbox.js.map +1 -1
- package/dist/components/Dialog/Dialog.js +61 -0
- package/dist/components/Dialog/Dialog.js.map +1 -0
- package/dist/components/Dialog/Dialog.styled.js +137 -0
- package/dist/components/Dialog/Dialog.styled.js.map +1 -0
- package/dist/components/Dialog/components/DialogAction.js +18 -0
- package/dist/components/Dialog/components/DialogAction.js.map +1 -0
- package/dist/components/Dialog/index.js +2 -0
- package/dist/components/Dialog/index.js.map +1 -0
- package/dist/components/Radio/Radio.js +7 -21
- package/dist/components/Radio/Radio.js.map +1 -1
- package/dist/components/ToggleButton/ToggleButton.styled.js +1 -1
- package/dist/components/ToggleButton/ToggleButton.styled.js.map +1 -1
- package/dist/foundation/Elevation/index.js +1 -1
- package/dist/foundation/Elevation/index.js.map +1 -1
- package/dist/foundation/Typography/index.js +0 -6
- package/dist/foundation/Typography/index.js.map +1 -1
- package/dist/foundation/Typography/tokens.js +1 -1
- package/dist/foundation/colors/base/grey.js +3 -1
- package/dist/foundation/colors/base/grey.js.map +1 -1
- package/dist/foundation/colors/index.js +5 -6
- package/dist/foundation/colors/index.js.map +1 -1
- package/dist/foundation/colors/token/component.js +31 -115
- package/dist/foundation/colors/token/component.js.map +1 -1
- package/dist/foundation/colors/token/core.js +43 -75
- package/dist/foundation/colors/token/core.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/Alert/Alert.utils.d.ts +3 -3
- package/dist/types/components/Button/Button.styled.d.ts +9 -9
- package/dist/types/components/Chip/Chip.styled.d.ts +12 -12
- package/dist/types/components/Dialog/Dialog.d.ts +50 -0
- package/dist/types/components/Dialog/Dialog.styled.d.ts +12 -0
- package/dist/types/components/Dialog/components/DialogAction.d.ts +8 -0
- package/dist/types/components/Dialog/index.d.ts +2 -0
- package/dist/types/components/Toast/Toast.utils.d.ts +1 -1
- package/dist/types/components/ToggleButton/ToggleButton.styled.d.ts +2 -2
- package/dist/types/foundation/Elevation/index.d.ts +1 -1
- package/dist/types/foundation/Typography/index.d.ts +1 -7
- package/dist/types/foundation/Typography/tokens.d.ts +1 -1
- package/dist/types/foundation/colors/base/grey.d.ts +2 -0
- package/dist/types/foundation/colors/index.d.ts +5 -6
- package/dist/types/foundation/colors/token/types.d.ts +0 -2
- package/dist/types/foundation/colors/types.d.ts +78 -76
- package/dist/types/foundation/index.d.ts +5 -0
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Button/Button.styled.ts +1 -1
- package/src/components/Checkbox/Checkbox.tsx +39 -22
- package/src/components/Dialog/Dialog.styled.ts +165 -0
- package/src/components/Dialog/Dialog.tsx +195 -0
- package/src/components/Dialog/components/DialogAction.tsx +36 -0
- package/src/components/Dialog/index.ts +14 -0
- package/src/components/Radio/Radio.tsx +37 -25
- package/src/components/ToggleButton/ToggleButton.styled.ts +1 -1
- package/src/foundation/Elevation/index.ts +1 -1
- package/src/foundation/Typography/index.ts +0 -6
- package/src/foundation/Typography/tokens.ts +1 -1
- package/src/foundation/colors/base/grey.ts +3 -1
- package/src/foundation/colors/index.ts +5 -6
- package/src/foundation/colors/token/component.ts +24 -108
- package/src/foundation/colors/token/core.ts +39 -71
- package/src/foundation/colors/token/types.ts +0 -2
- package/src/foundation/colors/types.ts +78 -75
- package/src/index.ts +1 -1
- package/src/stories/GettingStarted.mdx +88 -0
- package/src/stories/components/Button/BasicButton.stories.tsx +80 -52
- package/src/stories/components/Button/ButtonDocs.mdx +187 -0
- package/src/stories/components/Button/Color.stories.tsx +132 -0
- package/src/stories/components/Button/IconButton.stories.tsx +41 -35
- package/src/stories/components/Button/Kind.stories.tsx +13 -52
- package/src/stories/components/{SelectControl/Checkbox.stories.tsx → CheckBox/BasicCheckbox.stories.tsx} +84 -105
- package/src/stories/components/CheckBox/CheckboxDocs.mdx +85 -0
- package/src/stories/components/Chip/Chip.stories.tsx +65 -0
- package/src/stories/components/Chip/ChipDocs.mdx +132 -0
- package/src/stories/components/Dialog/Dialog.stories.tsx +320 -0
- package/src/stories/components/TextField/BasicTextField.stories.tsx +214 -0
- package/src/stories/components/TextField/TextFieldDocs.mdx +140 -0
- package/src/stories/components/TextField/TextFieldSize.stories.tsx +26 -3
- package/src/stories/components/ToggleButton/Basic.stories.tsx +312 -0
- package/src/stories/components/ToggleButton/ToggleButtonDocs.mdx +180 -0
- package/src/stories/components/ToggleButton/ToggleButtonKind.stories.tsx +65 -0
- package/src/stories/components/ToggleButton/WithIcon.stories.tsx +138 -0
- package/src/stories/foundation/Typography/Typography.mdx +31 -46
- package/src/stories/foundation/Typography/Typography.stories.tsx +30 -1
- package/src/stories/foundation/colors/ColorSystem.tsx +86 -0
- package/src/stories/foundation/colors/Docs.mdx +225 -0
- package/src/stories/foundation/colors/TokenPaletteTable.tsx +1 -5
- package/src/components/Modal/Modal.tsx +0 -8
- package/src/components/Modal/index.ts +0 -1
- package/src/stories/components/Modal/Modal.stories.tsx +0 -15
- package/src/stories/foundation/Typography/TypographyExamples.stories.tsx +0 -44
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box } from "@mui/material";
|
|
3
|
+
import { Bell } from "@lunit/design-system-icons";
|
|
4
|
+
|
|
5
|
+
import TextField from "@/components/TextField/TextField";
|
|
6
|
+
|
|
7
|
+
import type { StoryObj, Meta, StoryFn } from "@storybook/react";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Components/TextField",
|
|
11
|
+
component: TextField,
|
|
12
|
+
args: {
|
|
13
|
+
multiline: false,
|
|
14
|
+
size: "small",
|
|
15
|
+
disabled: false,
|
|
16
|
+
error: false,
|
|
17
|
+
placeholder: "Please typing...",
|
|
18
|
+
helperText: "",
|
|
19
|
+
},
|
|
20
|
+
argTypes: {
|
|
21
|
+
multiline: {
|
|
22
|
+
control: {
|
|
23
|
+
type: "radio",
|
|
24
|
+
},
|
|
25
|
+
options: [true, false],
|
|
26
|
+
description:
|
|
27
|
+
"The multiline prop transforms the text field into a TextareaAutosize element.",
|
|
28
|
+
},
|
|
29
|
+
error: {
|
|
30
|
+
control: {
|
|
31
|
+
type: "radio",
|
|
32
|
+
},
|
|
33
|
+
options: [true, false],
|
|
34
|
+
description:
|
|
35
|
+
"The error prop toggles the error state. The helperText prop can then be used to provide feedback to the user about the error.",
|
|
36
|
+
},
|
|
37
|
+
disabled: {
|
|
38
|
+
control: {
|
|
39
|
+
type: "radio",
|
|
40
|
+
},
|
|
41
|
+
options: [true, false],
|
|
42
|
+
description: "If true, the text field will be disabled.",
|
|
43
|
+
table: {
|
|
44
|
+
defaultValue: { summary: false },
|
|
45
|
+
type: { summary: [true, false] },
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
size: {
|
|
49
|
+
control: {
|
|
50
|
+
type: "radio",
|
|
51
|
+
},
|
|
52
|
+
description: "The size of the text field.",
|
|
53
|
+
table: {
|
|
54
|
+
defaultValue: { summary: "small" },
|
|
55
|
+
type: { summary: ["small", "medium", "large"] },
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
placeholder: {
|
|
59
|
+
type: "string",
|
|
60
|
+
description: "The placeholder content.",
|
|
61
|
+
table: {
|
|
62
|
+
defaultValue: { summary: "undefined" },
|
|
63
|
+
type: { summary: "string" },
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
helperText: {
|
|
67
|
+
type: "string",
|
|
68
|
+
description:
|
|
69
|
+
'The helper text content, use "error " or "sub text " to display helper text.',
|
|
70
|
+
table: {
|
|
71
|
+
defaultValue: { summary: "undefined" },
|
|
72
|
+
type: { summary: "string" },
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
parameters: {
|
|
77
|
+
controls: {
|
|
78
|
+
include: [
|
|
79
|
+
"size",
|
|
80
|
+
"disabled",
|
|
81
|
+
"helperText",
|
|
82
|
+
"placeholder",
|
|
83
|
+
"multiline",
|
|
84
|
+
"error",
|
|
85
|
+
],
|
|
86
|
+
},
|
|
87
|
+
docs: {
|
|
88
|
+
description: {
|
|
89
|
+
component: `It is a text field that allows users to enter and edit text.
|
|
90
|
+
\n It is usually used in forms. It can be used as a single line or multi-line text field.
|
|
91
|
+
\n It can be used with an icon on the left or right side.`,
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
decorators: [(Story) => <Box>{Story()}</Box>],
|
|
96
|
+
} as Meta<typeof TextField>;
|
|
97
|
+
|
|
98
|
+
export const BasicTextField: StoryObj<typeof TextField> = {
|
|
99
|
+
render: (args) => <TextField {...args}>{args.children}</TextField>,
|
|
100
|
+
parameters: {
|
|
101
|
+
chromatic: { disableSnapshot: true },
|
|
102
|
+
},
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
const MultiAndSingleTemplate: StoryFn<typeof TextField> = (args) => {
|
|
106
|
+
return (
|
|
107
|
+
<Box sx={{ display: "flex", gap: 2 }}>
|
|
108
|
+
<TextField {...args} />
|
|
109
|
+
<TextField {...args} multiline={true} />
|
|
110
|
+
</Box>
|
|
111
|
+
);
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
export const MultiAndSingle: StoryObj<typeof TextField> = {
|
|
115
|
+
render: MultiAndSingleTemplate,
|
|
116
|
+
parameters: {
|
|
117
|
+
controls: {
|
|
118
|
+
include: ["size", "disabled", "helperText", "placeholder", "error"],
|
|
119
|
+
},
|
|
120
|
+
chromatic: { disableSnapshot: true },
|
|
121
|
+
},
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
const DisabledTemplate: StoryFn<typeof TextField> = (args) => {
|
|
125
|
+
return (
|
|
126
|
+
<Box sx={{ display: "flex", gap: 2 }}>
|
|
127
|
+
<TextField {...args} disabled />
|
|
128
|
+
<TextField {...args} multiline={true} disabled />
|
|
129
|
+
</Box>
|
|
130
|
+
);
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
export const Disabled: StoryObj<typeof TextField> = {
|
|
134
|
+
render: DisabledTemplate,
|
|
135
|
+
parameters: {
|
|
136
|
+
controls: {
|
|
137
|
+
include: ["size", "helperText", "placeholder", "error", "disabled"],
|
|
138
|
+
},
|
|
139
|
+
chromatic: { disableSnapshot: true },
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
const ErrorTemplate: StoryFn<typeof TextField> = (args) => {
|
|
144
|
+
return (
|
|
145
|
+
<Box sx={{ display: "flex", gap: 2 }}>
|
|
146
|
+
<TextField {...args} error />
|
|
147
|
+
<TextField {...args} multiline={true} error />
|
|
148
|
+
</Box>
|
|
149
|
+
);
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
export const Error: StoryObj<typeof TextField> = {
|
|
153
|
+
render: ErrorTemplate,
|
|
154
|
+
parameters: {
|
|
155
|
+
controls: {
|
|
156
|
+
include: ["size", "helperText", "placeholder", "disabled"],
|
|
157
|
+
},
|
|
158
|
+
chromatic: { disableSnapshot: true },
|
|
159
|
+
},
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
const PlaceholderTemplate: StoryFn<typeof TextField> = (args) => {
|
|
163
|
+
return (
|
|
164
|
+
<Box sx={{ display: "flex", gap: 2 }}>
|
|
165
|
+
<TextField {...args} placeholder="Please typing..." />
|
|
166
|
+
<TextField {...args} multiline={true} placeholder="Please typing..." />
|
|
167
|
+
</Box>
|
|
168
|
+
);
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
export const Placeholder: StoryObj<typeof TextField> = {
|
|
172
|
+
render: PlaceholderTemplate,
|
|
173
|
+
parameters: {
|
|
174
|
+
controls: {
|
|
175
|
+
include: ["size", "helperText", "disabled", "error"],
|
|
176
|
+
},
|
|
177
|
+
chromatic: { disableSnapshot: true },
|
|
178
|
+
},
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
const HelperTextTemplate: StoryFn<typeof TextField> = (args) => {
|
|
182
|
+
return (
|
|
183
|
+
<Box sx={{ display: "flex", gap: 2 }}>
|
|
184
|
+
<TextField {...args} helperText="helper text" />
|
|
185
|
+
<TextField {...args} multiline={true} helperText="helper text" />
|
|
186
|
+
</Box>
|
|
187
|
+
);
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
export const HelperText: StoryObj<typeof TextField> = {
|
|
191
|
+
render: HelperTextTemplate,
|
|
192
|
+
parameters: {
|
|
193
|
+
controls: {
|
|
194
|
+
include: ["size", "disabled", "error", "placeholder"],
|
|
195
|
+
},
|
|
196
|
+
chromatic: { disableSnapshot: true },
|
|
197
|
+
},
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
const IconTemplate: StoryFn<typeof TextField> = (args) => {
|
|
201
|
+
return (
|
|
202
|
+
<Box sx={{ display: "flex", gap: 2 }}>
|
|
203
|
+
<TextField {...args} leftIcon={<Bell />} />
|
|
204
|
+
<TextField {...args} rightIcon={<Bell />} />
|
|
205
|
+
</Box>
|
|
206
|
+
);
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
export const Icon: StoryObj<typeof TextField> = {
|
|
210
|
+
render: IconTemplate,
|
|
211
|
+
parameters: {
|
|
212
|
+
chromatic: { disableSnapshot: true },
|
|
213
|
+
},
|
|
214
|
+
};
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { Canvas, Stories, Controls, Meta, Story } from "@storybook/blocks";
|
|
2
|
+
import Box from "@mui/material/Box";
|
|
3
|
+
|
|
4
|
+
import TextField from "@/components/TextField";
|
|
5
|
+
import * as TextFieldStories from "./BasicTextField.stories";
|
|
6
|
+
import * as TextFieldSizeStories from "./TextFieldSize.stories";
|
|
7
|
+
|
|
8
|
+
<Meta name="TextField Docs" of={TextFieldStories} />
|
|
9
|
+
|
|
10
|
+
# TextField
|
|
11
|
+
|
|
12
|
+
Text Fields let users enter and edit text.
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
### Basic TextField
|
|
17
|
+
|
|
18
|
+
```tsx
|
|
19
|
+
import { TextField } from "@lunit/design-system";
|
|
20
|
+
// or
|
|
21
|
+
import TextField from "@lunit/design-system/TextField";
|
|
22
|
+
|
|
23
|
+
<TextField />;
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Demo
|
|
27
|
+
|
|
28
|
+
<Canvas of={TextFieldStories.BasicTextField} sourceState="none" />
|
|
29
|
+
|
|
30
|
+
<Controls />
|
|
31
|
+
|
|
32
|
+
### MultiLine
|
|
33
|
+
|
|
34
|
+
The multiline prop transforms the text field into a [TextareaAutosize](https://mui.com/material-ui/react-textarea-autosize/) element.<br />
|
|
35
|
+
If multiline is undefined, it behaves the same as false.<br />
|
|
36
|
+
Default multiline is `false`.
|
|
37
|
+
|
|
38
|
+
<Canvas of={TextFieldStories.MultiAndSingle} sourceState="none" />
|
|
39
|
+
|
|
40
|
+
```tsx
|
|
41
|
+
<TextField />
|
|
42
|
+
<TextField multiline />
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Size
|
|
46
|
+
|
|
47
|
+
The TextField have three sizes: `small`, `medium` and `large`.<br />
|
|
48
|
+
Using the `size` prop, you can change the size of the TextField.<br />
|
|
49
|
+
Default size is `small`.
|
|
50
|
+
|
|
51
|
+
<Canvas
|
|
52
|
+
of={TextFieldSizeStories.TextFieldSize}
|
|
53
|
+
meta={TextFieldSizeStories}
|
|
54
|
+
sourceState="none"
|
|
55
|
+
/>
|
|
56
|
+
|
|
57
|
+
```tsx
|
|
58
|
+
// multiline is false or undefined
|
|
59
|
+
<TextField size="small" />
|
|
60
|
+
<TextField size="medium" />
|
|
61
|
+
<TextField size="large" />
|
|
62
|
+
|
|
63
|
+
// multiline is true
|
|
64
|
+
<TextField multiline size="small" />
|
|
65
|
+
<TextField multiline size="medium" />
|
|
66
|
+
<TextField multiline size="large" />
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Disabled
|
|
70
|
+
|
|
71
|
+
If you want to disable the TextField, you can use the `disabled` prop.<br />
|
|
72
|
+
Default disabled is `false`.
|
|
73
|
+
|
|
74
|
+
<Canvas of={TextFieldStories.Disabled} sourceState="none" />
|
|
75
|
+
|
|
76
|
+
```tsx
|
|
77
|
+
<TextField disabled />
|
|
78
|
+
<TextField multiline disabled />
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Error
|
|
82
|
+
|
|
83
|
+
The error prop toggles the error state.<br />
|
|
84
|
+
The helperText prop can then be used to provide feedback to the user about the error.<br />
|
|
85
|
+
Default error is `false`.
|
|
86
|
+
|
|
87
|
+
<Canvas of={TextFieldStories.Error} sourceState="none" />
|
|
88
|
+
|
|
89
|
+
```tsx
|
|
90
|
+
<TextField {...args} error />
|
|
91
|
+
<TextField {...args} error multiline={true} />
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Placeholder
|
|
95
|
+
|
|
96
|
+
The placeholder attribute defines the text displayed in a form control when the control has no value.<br />
|
|
97
|
+
The placeholder text should provide a brief hint to the user as to the expected type of data<br />
|
|
98
|
+
that should be entered into the control.
|
|
99
|
+
|
|
100
|
+
<Canvas of={TextFieldStories.Placeholder} sourceState="none" />
|
|
101
|
+
|
|
102
|
+
```tsx
|
|
103
|
+
<TextField placeholder="Please typing..." />
|
|
104
|
+
<TextField multiline placeholder="Please typing..." />
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### helperText
|
|
108
|
+
|
|
109
|
+
The helper text content, use "error " or "sub text " to display helper text.
|
|
110
|
+
|
|
111
|
+
<Canvas of={TextFieldStories.HelperText} sourceState="none" />
|
|
112
|
+
|
|
113
|
+
```tsx
|
|
114
|
+
<TextField helperText="helper text" />
|
|
115
|
+
<TextField multiline helperText="helper text" />
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Icon
|
|
119
|
+
|
|
120
|
+
TextField icons can be added to the left and right sides.<br />
|
|
121
|
+
Use the leftIcon prop for the left side and the rightIcon prop for the right side. <br />
|
|
122
|
+
Icon can only be used with a single TextField.
|
|
123
|
+
|
|
124
|
+
<Canvas of={TextFieldStories.Icon} sourceState="none" />
|
|
125
|
+
|
|
126
|
+
```tsx
|
|
127
|
+
<TextField leftIcon={<Bell />} />
|
|
128
|
+
<TextField rightIcon={<Bell />} />
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## Reference
|
|
132
|
+
|
|
133
|
+
- [Material-UI TextField](https://mui.com/material-ui/react-text-field/)
|
|
134
|
+
- [Material-UI TextField API](https://mui.com/material-ui/api/text-field/)
|
|
135
|
+
- [Lunit Design System TextField Figma](https://www.figma.com/file/BSdRUpEPp7XiJ9YnEqpf6F/1.0.0_Components?node-id=284%3A151&mode=dev)
|
|
136
|
+
|
|
137
|
+
## Support
|
|
138
|
+
|
|
139
|
+
- Github: [Create a new issue](https://github.com/lunit-io/design-system/issues/new)
|
|
140
|
+
- Slack: #tf_design_system
|
|
@@ -2,8 +2,8 @@ import React from "react";
|
|
|
2
2
|
import {
|
|
3
3
|
Box,
|
|
4
4
|
Table,
|
|
5
|
-
TableBody,
|
|
6
5
|
TableCell,
|
|
6
|
+
TableBody,
|
|
7
7
|
TableHead,
|
|
8
8
|
TableRow,
|
|
9
9
|
} from "@mui/material";
|
|
@@ -73,7 +73,7 @@ export default {
|
|
|
73
73
|
decorators: [(Story) => <Box className="base00">{Story()}</Box>],
|
|
74
74
|
} as Meta<typeof TextField>;
|
|
75
75
|
|
|
76
|
-
const
|
|
76
|
+
const TextFieldSizeWithTableTemplate: StoryFn<typeof TextField> = (args) => (
|
|
77
77
|
<Table>
|
|
78
78
|
<TableHead>
|
|
79
79
|
<TableRow>
|
|
@@ -129,6 +129,29 @@ const TextFieldSizeTemplate: StoryFn<typeof TextField> = (args) => (
|
|
|
129
129
|
);
|
|
130
130
|
|
|
131
131
|
export const TextFieldSize = {
|
|
132
|
-
render:
|
|
132
|
+
render: TextFieldSizeWithTableTemplate,
|
|
133
133
|
name: "Size",
|
|
134
134
|
};
|
|
135
|
+
|
|
136
|
+
const TextFieldSizeTemplate: StoryFn<typeof TextField> = (args) => (
|
|
137
|
+
<Box sx={{ display: "flex", flexDirection: "column", gap: 4 }}>
|
|
138
|
+
<Box>
|
|
139
|
+
<TextField sx={{ mr: 4 }} {...args} />
|
|
140
|
+
<TextField sx={{ mr: 4 }} {...args} size="medium" />
|
|
141
|
+
<TextField {...args} size="large" />
|
|
142
|
+
</Box>
|
|
143
|
+
<Box>
|
|
144
|
+
<TextField sx={{ mr: 4 }} {...args} multiline />
|
|
145
|
+
<TextField sx={{ mr: 4 }} {...args} size="medium" multiline />
|
|
146
|
+
<TextField {...args} size="large" multiline />
|
|
147
|
+
</Box>
|
|
148
|
+
</Box>
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
export const TextFieldOnlySize = {
|
|
152
|
+
render: TextFieldSizeTemplate,
|
|
153
|
+
name: "Size Only",
|
|
154
|
+
parameters: {
|
|
155
|
+
chromatic: { disableSnapshot: true },
|
|
156
|
+
},
|
|
157
|
+
};
|