-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix types, label → description & suffixElement → suffix
- Loading branch information
Showing
86 changed files
with
375 additions
and
291 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
|
||
import { ActionableCallout, ActionableCalloutLabel } from "seed-design/ui/actionable-callout"; | ||
import { ActionableCallout, ActionableCalloutDescription } from "seed-design/ui/actionable-callout"; | ||
|
||
export default function ActionableCalloutDanger() { | ||
return ( | ||
<ActionableCallout onClick={() => window.alert("Hello World")} variant="danger"> | ||
<ActionableCalloutLabel> | ||
<ActionableCalloutDescription> | ||
Dolore ex occaecat Lorem ad eu. Consectetur consectetur magna pariatur aliquip enim non. | ||
</ActionableCalloutLabel> | ||
</ActionableCalloutDescription> | ||
</ActionableCallout> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
|
||
import { ActionableCallout, ActionableCalloutLabel } from "seed-design/ui/actionable-callout"; | ||
import { ActionableCallout, ActionableCalloutDescription } from "seed-design/ui/actionable-callout"; | ||
|
||
export default function ActionableCalloutInformative() { | ||
return ( | ||
<ActionableCallout onClick={() => window.alert("Hello World")} variant="informative"> | ||
<ActionableCalloutLabel> | ||
<ActionableCalloutDescription> | ||
Dolore ex occaecat Lorem ad eu. Consectetur consectetur magna pariatur aliquip enim non. | ||
</ActionableCalloutLabel> | ||
</ActionableCalloutDescription> | ||
</ActionableCallout> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
|
||
import { ActionableCallout, ActionableCalloutLabel } from "seed-design/ui/actionable-callout"; | ||
import { ActionableCallout, ActionableCalloutDescription } from "seed-design/ui/actionable-callout"; | ||
|
||
export default function ActionableCalloutNeutral() { | ||
return ( | ||
<ActionableCallout onClick={() => window.alert("Hello World")} variant="magic"> | ||
<ActionableCalloutLabel> | ||
<ActionableCalloutDescription> | ||
Dolore ex occaecat Lorem ad eu. Consectetur consectetur magna pariatur aliquip enim non. | ||
</ActionableCalloutLabel> | ||
</ActionableCalloutDescription> | ||
</ActionableCallout> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
|
||
import { ActionableCallout, ActionableCalloutLabel } from "seed-design/ui/actionable-callout"; | ||
import { ActionableCallout, ActionableCalloutDescription } from "seed-design/ui/actionable-callout"; | ||
|
||
export default function ActionableCalloutNeutral() { | ||
return ( | ||
<ActionableCallout onClick={() => window.alert("Hello World")} variant="neutral"> | ||
<ActionableCalloutLabel> | ||
<ActionableCalloutDescription> | ||
Dolore ex occaecat Lorem ad eu. Consectetur consectetur magna pariatur aliquip enim non. | ||
</ActionableCalloutLabel> | ||
</ActionableCalloutDescription> | ||
</ActionableCallout> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
|
||
import { ActionableCallout, ActionableCalloutLabel } from "seed-design/ui/actionable-callout"; | ||
import { ActionableCallout, ActionableCalloutDescription } from "seed-design/ui/actionable-callout"; | ||
|
||
export default function ActionableCalloutTextOnly() { | ||
return ( | ||
<ActionableCallout onClick={() => window.alert("Hello World")} variant="magic"> | ||
<ActionableCalloutLabel> | ||
<ActionableCalloutDescription> | ||
Aliquip laboris excepteur enim sunt eiusmod laboris anim. | ||
</ActionableCalloutLabel> | ||
</ActionableCalloutDescription> | ||
</ActionableCallout> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
|
||
import { ActionableCallout, ActionableCalloutLabel } from "seed-design/ui/actionable-callout"; | ||
import { ActionableCallout, ActionableCalloutDescription } from "seed-design/ui/actionable-callout"; | ||
|
||
export default function ActionableCalloutWarning() { | ||
return ( | ||
<ActionableCallout onClick={() => window.alert("Hello World")} variant="warning"> | ||
<ActionableCalloutLabel> | ||
<ActionableCalloutDescription> | ||
Dolore ex occaecat Lorem ad eu. Consectetur consectetur magna pariatur aliquip enim non. | ||
</ActionableCalloutLabel> | ||
</ActionableCalloutDescription> | ||
</ActionableCallout> | ||
); | ||
} |
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
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
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
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
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
Oops, something went wrong.