-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Add size
prop to large
variant components
#7234
Conversation
2b159f9
to
c3133a5
Compare
Add `size` to Tag componentsBuild artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job. |
c3133a5
to
7468d5a
Compare
Add `size` to Tag componentsBuild artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job. |
7468d5a
to
1531f9b
Compare
Fix size argument type in sizeClass utilityBuild artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor nit, approving
packages/core/src/common/classes.ts
Outdated
@@ -447,7 +447,7 @@ export function positionClass(position: Position | undefined) { | |||
} | |||
|
|||
export function sizeClass( | |||
size: Size | Omit<Size, "small">, | |||
size: Size | NonSmallSize, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is equivalent to just Size
, we can simplify this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
503153e
to
c322cde
Compare
Invalidated by push of c322cde
0ebbacc
to
3c7c6d1
Compare
3c7c6d1
to
f6716ef
Compare
Use Exclude instead of Omit for NonSmallSize typeBuild artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job. |
Revert unintentional changes to demo-appBuild artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job. |
Part of #7232
Proposed changes:
FLUP to #7226 that adds the
size
prop to the following components:<Checkbox>
<CompoundTag>
<Radio>
<Switch>
<Tabs>
<Tag>
<TagInput>