Skip to content

Commit

Permalink
Merge branch 'main' into 896-rename-sdsstyle-prop-to-invertstyle-in-t…
Browse files Browse the repository at this point in the history
…ooltip-component
  • Loading branch information
masoudmanson authored Nov 20, 2024
2 parents dcc48f7 + 064f1b4 commit 708ce9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/core/InputCheckbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface CheckboxContentProps
extends Omit<MUICheckboxProps, "color" | "defaultChecked" | "indeterminate"> {
caption?: string;
checkboxProps?: Partial<MUICheckboxProps>;
intent?: "default" | "error" | "warning";
intent?: "default" | "negative" | "notice" | "positive";
label?: React.ReactNode;
stage?: "checked" | "unchecked" | "indeterminate";
}
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/core/InputRadio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import React from "react";
export interface RadioContentProps
extends Omit<MUIRadioProps, "color" | "defaultChecked"> {
caption?: string;
intent?: "default" | "error" | "warning";
intent?: "default" | "negative" | "notice" | "positive";
label?: React.ReactNode;
radioProps?: Partial<MUIRadioProps>;
stage?: "checked" | "unchecked";
Expand Down

0 comments on commit 708ce9c

Please sign in to comment.