-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🎸 remove isTertiaryDisabled prop and showTertiaryButton
remove isTertiaryDisabled and showTertiaryButton props and replace them with a new prop called tertiaryStatus. BREAKING CHANGE: 🧨 remove isTertiaryDisabled and showTertiaryButton props and replace them with a new prop called tertiaryStatus that will determine if we render the tertiary button as well as how we handle disabling/enabling it.
- Loading branch information
1 parent
5f5ab13
commit 9bc03ad
Showing
5 changed files
with
66 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export type SQFormDialogTertiaryValue = | ||
| 'HIDE_BUTTON' | ||
| 'NO_VALIDATION' | ||
| 'IS_DISABLED' | ||
| 'IS_ENABLED' | ||
| 'FORM_VALIDATION_ONLY' | ||
| 'IS_DISABLED_AND_FORM_VALIDATION'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters