Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ggdouglas committed Jan 31, 2025
1 parent ff9660e commit 61b79df
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/button/buttonProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export interface ButtonSharedProps extends ActionProps<HTMLElement> {
/**
* Whether this button should use large styles.
*
* @default false
* @deprecated use `size="large"` instead.
* @default false
*/
large?: boolean;

Expand Down Expand Up @@ -89,8 +89,8 @@ export interface ButtonSharedProps extends ActionProps<HTMLElement> {
/**
* Whether this button should use small styles.
*
* @default false
* @deprecated use `size="small"` instead.
* @default false
*/
small?: boolean;

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/forms/controlProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ export interface ControlProps
/**
* Whether this control should use large styles.
*
* @default false
* @deprecated use `size="large"` instead.
* @default false
*/
large?: boolean;

Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/components/forms/textArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ export interface TextAreaProps extends IntentProps, Props, React.TextareaHTMLAtt
/**
* Whether the text area should appear with large styling.
*
* @default false
* @deprecated use `size="large"` instead.
* @default false
*/
large?: boolean;

/**
* Whether the text area should appear with small styling.
*
* @default false
* @deprecated use `size="small"` instead.
* @default false
*/
small?: boolean;

Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/components/menu/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ export interface MenuProps extends Props, React.HTMLAttributes<HTMLUListElement>
/**
* Whether the menu items in this menu should use a large appearance.
*
* @default false
* @deprecated use `size="large"` instead.
* @default false
*/
large?: boolean;

/**
* Whether the menu items in this menu should use a small appearance.
*
* @default false
* @deprecated use `size="small"` instead.
* @default false
*/
small?: boolean;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ export interface SegmentedControlProps
/**
* Whether this control should use large buttons.
*
* @default false
* @deprecated use `size="large"` instead.
* @default false
*/
large?: boolean;

Expand Down Expand Up @@ -89,8 +89,8 @@ export interface SegmentedControlProps
/**
* Whether this control should use small buttons.
*
* @default false
* @deprecated use `size="small"` instead.
* @default false
*/
small?: boolean;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/components/tag-input/tagInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ export interface TagInputProps extends IntentProps, Props {
/**
* Whether the tag input should use a large size.
*
* @default false
* @deprecated use `size="large"` instead.
* */
* @default false
*/
large?: boolean;

/** Name of a Blueprint UI icon (or an icon element) to render on the left side of the input. */
Expand Down

0 comments on commit 61b79df

Please sign in to comment.