Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a413324
fix(Button): unify all button styles into a single object
tenphi Jan 6, 2023
2befa93
fix(Button): add useAction hook and special theme
tenphi Jan 6, 2023
29c647b
fix(Button): add useAction hook and special theme * 2
tenphi Jan 6, 2023
17c8b4e
fix(Select): styles rework
tenphi Jan 6, 2023
d2e43fd
fix(Button): special neutral styles
tenphi Jan 6, 2023
727ac3c
fix(Button): style props
tenphi Jan 6, 2023
213d3c8
fix(Button): style props * 2
tenphi Jan 7, 2023
d60a4ef
fix(Button): remove border in link type
tenphi Jan 7, 2023
c9022d0
refactor(tasty): additional optimizations to cache
tenphi Jan 7, 2023
352bf80
fix(Button): focus state
tenphi Jan 7, 2023
58f1dc2
refactor(Action): use tasty element
tenphi Jan 7, 2023
279055a
fix(Select): type typings
tenphi Jan 7, 2023
c28edb0
chore: simplify ComplexForm story
tenphi Jan 7, 2023
04a7d60
chore: simplify ComplexForm story * 2
tenphi Jan 7, 2023
56a3a16
refactor(tasty): cache optimization
tenphi Jan 9, 2023
22b69e5
chore: do not render ComplexForm story in chromatic
tenphi Jan 9, 2023
6ec194d
chore: do not render ComplexForm story in chromatic * 2
tenphi Jan 9, 2023
1a97f83
chore: do not render ComplexForm story in chromatic * 3
tenphi Jan 9, 2023
118e96e
chore: render ComplexForm story in chromatic
tenphi Jan 9, 2023
009facb
chore: improve tests speed
tenphi Jan 9, 2023
86d3274
fix(Button): fix size in icon-only variant
tenphi Jan 11, 2023
63fd411
fix(Title): add ellipsis where it is required
tenphi Jan 12, 2023
4061b1d
fix(Action): as prop and styles
tenphi Jan 13, 2023
f4f4502
fix(use-action): label passing
tenphi Jan 16, 2023
37fbd1a
fix(Button): secondary special styles
tenphi Jan 16, 2023
dfdf2de
feat(Select): add special theme
tenphi Jan 16, 2023
6b8b639
fix(Button): special neutral styles
tenphi Jan 16, 2023
03f6c6b
fix(Button): special neutral styles * 2
tenphi Jan 16, 2023
b4f7512
fix(Button): link disabled fill style
tenphi Jan 16, 2023
485fd0e
fix(Select): limited width state
tenphi Jan 17, 2023
fc56b51
feat(Select): ellipsis prop
tenphi Jan 17, 2023
4a2cce4
fix(RangeSlider): input api
tenphi Jan 17, 2023
846c17a
Create warm-donkeys-joke.md
tenphi Jan 18, 2023
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: simplify ComplexForm story * 2
  • Loading branch information
tenphi committed Jan 7, 2023
commit 04a7d603b51fbb023f3c5c8664544f25ee424585
42 changes: 21 additions & 21 deletions src/components/forms/Form/ComplexForm.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import {
Block,
// Checkbox,
// CheckboxGroup,
ComboBox,
// ComboBox,
Field,
Form,
Item,
// Item,
PasswordInput,
// Radio,
// RangeSlider,
Select,
// Select,
Submit,
SubmitError,
// Switch,
Expand Down Expand Up @@ -270,24 +270,24 @@ const Template: StoryFn<typeof Form> = (args) => {
<Field name="password">
<PasswordInput label="Password field" />
</Field>
<Field
name={['select', 'one']}
label="Select field"
tooltip="Additional field description"
>
<Select>
<Item key="one">One</Item>
<Item key="two">Two</Item>
<Item key="three">Three</Item>
</Select>
</Field>
<Field name="combobox" label="ComboBox field">
<ComboBox>
<Item key="one">One</Item>
<Item key="two">Two</Item>
<Item key="three">Three</Item>
</ComboBox>
</Field>
{/*<Field*/}
{/* name={['select', 'one']}*/}
{/* label="Select field"*/}
{/* tooltip="Additional field description"*/}
{/*>*/}
{/* <Select>*/}
{/* <Item key="one">One</Item>*/}
{/* <Item key="two">Two</Item>*/}
{/* <Item key="three">Three</Item>*/}
{/* </Select>*/}
{/*</Field>*/}
{/*<Field name="combobox" label="ComboBox field">*/}
{/* <ComboBox>*/}
{/* <Item key="one">One</Item>*/}
{/* <Item key="two">Two</Item>*/}
{/* <Item key="three">Three</Item>*/}
{/* </ComboBox>*/}
{/*</Field>*/}
{/*<Field*/}
{/* name="checkboxGroup"*/}
{/* label="Checkbox group"*/}
Expand Down