Skip to content

Commit 9d42abc

Browse files
committed
make cancellable a tag
1 parent b1b6da2 commit 9d42abc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/components/docs/Doc.astro

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,11 @@ function color(): string {
6969
<div class="flex flex-col gap-1">
7070
<div class="flex flex-row gap-3 flex-wrap">
7171
{docType.deprecated ? <h2 class="opacity-50 line-through">{docType.name}</h2> : <h2>{docType.name}</h2>}
72-
{[docType.deprecated].filter(x => x).map(x => <DocsFiche text="Deprecated" color="520f0f"/>)}
7372
{[docType.new].filter(x => x).map(x => <DocsFiche text="New" color="B10003"/>)}
74-
7573
<DocsFiche text={docType.type} color={color()}/>
74+
{[docType.deprecated].filter(x => x).map(x => <DocsFiche text="Deprecated" color="520f0f"/>)}
75+
{[docType.cancellable].filter(x => x).map(x => <DocsFiche text="Cancellable" color="112998"/>)}
76+
7677
<div class="id flex-auto relative -top-37" id={docType.id}></div> <!-- Anchor all the way up or else its in the nav bar -->
7778
<button class="share">
7879
<p class="p-2 hidden absolute w-64 my-auto shadow-lg
@@ -91,7 +92,6 @@ function color(): string {
9192

9293
<div>
9394
<DocData text="Since" value={docType.since}/>
94-
<DocData text="Cancellable" value={docType.cancellable != null ? (docType.cancellable ? "Yes" : "No") : null}/>
9595
<DocData text="Requirements" value={docType.requirements}/>
9696
<DocData text="Supported events" value={docType.events}/>
9797
<DocData text="Returns" value={docType.returnType?.name ?? null}/>
@@ -113,8 +113,7 @@ function color(): string {
113113
{[docType.eventValues]
114114
.filter(x => x !== null)
115115
.map(_ =>
116-
<button class="eventValues"
117-
style={{ backgroundColor: `#${color()}` }}>
116+
<button class="eventValues bg-l-icon-hover dark:bg-d-icon-hover">
118117
<svg class="transition my-auto fill-white" width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
119118
<path d="M8.60627 10.8563L5.88752 8.1375C5.85002 8.1 5.82202 8.0595 5.80352 8.016C5.78502 7.9725 5.77552 7.9255 5.77502 7.875C5.77502 7.775 5.80952 7.6875 5.87852 7.6125C5.94752 7.5375 6.03802 7.5 6.15002 7.5H11.85C11.9625 7.5 12.0533 7.5375 12.1223 7.6125C12.1913 7.6875 12.2255 7.775 12.225 7.875C12.225 7.9 12.1875 7.9875 12.1125 8.1375L9.39377 10.8563C9.33127 10.9188 9.26877 10.9625 9.20627 10.9875C9.14377 11.0125 9.07502 11.025 9.00002 11.025C8.92502 11.025 8.85627 11.0125 8.79377 10.9875C8.73127 10.9625 8.66877 10.9188 8.60627 10.8563Z"/>
120119
</svg>

0 commit comments

Comments
 (0)