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

Refactor components #226

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7b1c4c2
WIP
t-hamano Oct 19, 2024
ece4941
WIP
t-hamano Oct 19, 2024
63c9c9e
WIP
t-hamano Oct 19, 2024
7f77b67
WIP
t-hamano Oct 19, 2024
39b079f
WIP
t-hamano Oct 19, 2024
47f1554
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
d63d0d0
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
88b37cc
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
84ce3ee
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
46cf179
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
07dd99d
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
e2f8883
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
9f1aef6
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
0177c45
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
97a602f
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
18ea58a
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
32c11fb
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
0625ee9
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
63b98fe
WIP
t-hamano Oct 20, 2024
2bd298a
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
6bb4351
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
a957a89
Remove popover slot
t-hamano Oct 20, 2024
ab71378
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
7b3568a
Refactor PaddingControl with wordpress components
t-hamano Oct 20, 2024
15b7b02
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
a887429
Merge branch 'main' into refactor-components
t-hamano Oct 20, 2024
4c0be50
Merge branch 'main' into refactor-components
t-hamano Oct 20, 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
8 changes: 4 additions & 4 deletions src/controls/border-color-control.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ type Props = {
help?: string;
onChange: ( event: any ) => void;
values: {
top?: Property.BorderTopColor;
right?: Property.BorderRightColor;
bottom?: Property.BorderBottomColor;
left?: Property.BorderLeftColor;
top?: Property.Color;
right?: Property.Color;
bottom?: Property.Color;
left?: Property.Color;
};
};

Expand Down
2 changes: 1 addition & 1 deletion src/controls/color-control.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import {
FlexItem,
Popover,
ColorPalette,
__experimentalVStack as VStack,
__experimentalSpacer as Spacer,
__experimentalVStack as VStack,
__experimentalText as Text,
} from '@wordpress/components';
import { store as blockEditorStore } from '@wordpress/block-editor';
Expand Down
Loading
Loading