Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
201d4f1
feat: add contributors popup card
userquin Feb 23, 2026
ef187b0
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Feb 23, 2026
373656a
chore: cleanup console.log
userquin Feb 23, 2026
c26c191
chore: apply coderabbitai suggestion for website url
userquin Feb 23, 2026
3764ea9
chore: apply coderabbitai suggestion for role
userquin Feb 23, 2026
85439ec
chore: apply coderabbitai suggestion for noExternalIcon jsdoc
userquin Feb 23, 2026
9769b80
chore: remove `about.team.governance` from json file and add `about.t…
userquin Feb 23, 2026
47c9cac
[autofix.ci] apply automated fixes
autofix-ci[bot] Feb 23, 2026
c9d5d70
chore: fix `http:` without `//`
userquin Feb 23, 2026
f70e50f
Merge remote-tracking branch 'origin/userquin/feat-add-contributors-p…
userquin Feb 23, 2026
138b1c3
chore: apply coderabbitai suggestion for useInfo
userquin Feb 23, 2026
5d34b0e
chore: apply coderabbitai suggestion for timers cleanup
userquin Feb 23, 2026
5e034fe
chore: fix positionPopover called fire-and-forget and openTimer not r…
userquin Feb 23, 2026
950ad13
chore: fix showPopover at positionPopover error
userquin Feb 23, 2026
93d10b5
chore: add long aria label link description
userquin Feb 23, 2026
38596e2
chore: adjust popup margins and gaps
userquin Feb 23, 2026
08145a0
chore: use sanitize-html at endpoint
userquin Feb 23, 2026
b55b56a
chore: fix popup position on RTL
userquin Feb 23, 2026
776c173
chore: use v-else-if fro contributors
userquin Feb 23, 2026
55db682
chore: use aria-hidden with uno icons
userquin Feb 23, 2026
0eb69cf
chore: add bsky and mastodon links + cleanup
userquin Feb 27, 2026
28377bf
chore: change popup logic
userquin Feb 27, 2026
415ac01
chore: clean string for mastodon url
userquin Feb 27, 2026
cbb73c4
chore: add link for non-expandable contributors
userquin Feb 27, 2026
12b8f15
chore: guard `e.target` before calling `closest()`
userquin Feb 27, 2026
75916f7
chore: Avatar controls lost direct profile navigation for a subset of…
userquin Feb 27, 2026
88a16d5
chore: cleanup timers and listeners
userquin Feb 27, 2026
54e003c
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Feb 27, 2026
59403e2
chore: use `no-new-tab-icon` instead `no-external-icon` (LinkBase upd…
userquin Feb 27, 2026
edb7144
[autofix.ci] apply automated fixes
autofix-ci[bot] Feb 27, 2026
d36a691
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Feb 28, 2026
1e8088e
chore: apply a11y suggestions
userquin Feb 28, 2026
57d6841
[autofix.ci] apply automated fixes
autofix-ci[bot] Feb 28, 2026
5004116
chore: paginate graphql call
userquin Feb 28, 2026
45efa4e
Merge remote-tracking branch 'origin/userquin/feat-add-contributors-p…
userquin Feb 28, 2026
4bc2268
chore: update styles
userquin Feb 28, 2026
14df8cc
chore: optimize vue dom
userquin Feb 28, 2026
608df54
chore: optimize vue dom again
userquin Feb 28, 2026
884037d
chore: add aria-expanded correctly
userquin Feb 28, 2026
1b56bdc
chore: remove obsolete `about.contributors.view_profile`
userquin Feb 28, 2026
a96ed33
[autofix.ci] apply automated fixes
autofix-ci[bot] Feb 28, 2026
ef9c2e8
chore: remove duplicated `duration-200` at link base
userquin Feb 28, 2026
4249e3c
Merge remote-tracking branch 'origin/userquin/feat-add-contributors-p…
userquin Feb 28, 2026
cae0201
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Mar 1, 2026
3fc6dc1
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 1, 2026
7b2c069
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Mar 5, 2026
13c10da
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2026
496ada0
chore: restore original tooltip for anchors
userquin Mar 5, 2026
972b453
chore: fix scroll
userquin Mar 6, 2026
76278b0
fix: remove v-once and custom aria label
userquin Mar 7, 2026
03f15be
chore: add `aria-haspopup` handling `aria-expanded` and `aria-control…
userquin Mar 7, 2026
aa0b3e2
chore: remove aria-haspopup
userquin Mar 7, 2026
eb72ed1
chore: handle `aria-expanded` correctly
userquin Mar 7, 2026
9c50d4e
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Mar 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions app/components/Link/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,15 @@ const props = withDefaults(

/** should only be used for links where the context makes it very clear they are clickable. Don't just use this, because you don't like underlines. */
noUnderline?: boolean

/**
* When `true`, suppresses the external-link icon even for external `to` URLs.
*
* @default false
*/
noExternalIcon?: boolean
}>(),
{ variant: 'link', size: 'medium' },
{ variant: 'link', size: 'medium', noUnderline: false, noExternalIcon: false },
)

const isLinkExternal = computed(
Expand Down Expand Up @@ -99,7 +106,7 @@ const isButtonMedium = computed(() => props.size === 'medium' && !isLink.value)
<slot />
<!-- automatically show icon indicating external link -->
<span
v-if="isLinkExternal && !classicon"
v-if="isLinkExternal && !noExternalIcon && !classicon"
class="i-lucide:external-link rtl-flip size-[1em] opacity-50"
aria-hidden="true"
/>
Expand Down
Loading
Loading