Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
79ef365
feat(frontend): community version distribution
vinnymac Feb 8, 2026
abf5521
Merge remote-tracking branch 'upstream/main' into vt/nullvoxpopuli
vinnymac Feb 8, 2026
6b8b10c
fix(ui): tooltip z index and positioning
vinnymac Feb 9, 2026
a841c6e
fix(ui): update toggle to make it reusable
vinnymac Feb 9, 2026
7afacda
fix(ui): remove unnecessary css selectors
vinnymac Feb 9, 2026
5bc8d85
chore: fix class types
vinnymac Feb 9, 2026
25baf03
chore: remove dead code from original color implementation
vinnymac Feb 9, 2026
031a13f
chore: fix usage of any type
vinnymac Feb 9, 2026
6f3e7cb
fix: handle out of range
vinnymac Feb 9, 2026
fb43c42
fix: i18n title keys
vinnymac Feb 9, 2026
d17e00a
fix: add package name to y axis label for better screenshots
vinnymac Feb 9, 2026
9eb9dfa
fix: a11y spec types
vinnymac Feb 9, 2026
95c7554
feat(ui): update the ui to better match the existing modal and improv…
vinnymac Feb 9, 2026
418ec4f
fix: a11y focus outlines
vinnymac Feb 9, 2026
482bc84
fix: prevent keydown while loading
vinnymac Feb 9, 2026
b6e063a
feat: add show low usage versions
vinnymac Feb 9, 2026
bff1505
feat: flip the wording for old versions so we default to hiding them
vinnymac Feb 9, 2026
4919d6f
fix: remove unnecessary tick and fix aspect ratio
vinnymac Feb 9, 2026
d264b7d
fix: add timeout cleanup
vinnymac Feb 9, 2026
e65bf62
fix: caching best practices
vinnymac Feb 9, 2026
205c634
fix: last week version nitpicks
vinnymac Feb 9, 2026
75c778f
fix: revert ai recommendation
vinnymac Feb 9, 2026
bcf6f43
fix: move validations into try/catch
vinnymac Feb 9, 2026
e9ea5c1
chore: merge conflicts resolved
vinnymac Feb 9, 2026
277b6a0
chore: i18n schema with version distribution strings
vinnymac Feb 9, 2026
20e8826
fix: isr cache key got me dizzy
vinnymac Feb 9, 2026
f0a386d
fix: chart enhancements from feedback
vinnymac Feb 9, 2026
b02f876
Merge branch 'main' into vt/nullvoxpopuli
vinnymac Feb 9, 2026
43394a0
fix: tooltips in version distributions modal
vinnymac Feb 10, 2026
6ff63b8
Merge branch 'main' into vt/nullvoxpopuli
vinnymac Feb 10, 2026
99073d9
feat: reverse order for toggles
vinnymac Feb 10, 2026
b889847
feat: subtle gradient for area charts
vinnymac Feb 10, 2026
7a49dad
fix: add missing modal title
vinnymac Feb 10, 2026
f6b93d5
fix: position of reset button
vinnymac Feb 10, 2026
1230cd1
fix: switch back to old versions by default
vinnymac Feb 10, 2026
f9edd5c
Merge remote-tracking branch 'upstream/main' into vt/nullvoxpopuli
vinnymac Feb 10, 2026
63ab22c
fix: move tooltip and labels
vinnymac Feb 10, 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
13 changes: 11 additions & 2 deletions app/components/Package/ChartModal.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
<script setup lang="ts"></script>
<script setup lang="ts">
const props = defineProps<{
title: string
}>()

const emit = defineEmits<{
(e: 'transitioned'): void
}>()
</script>

<template>
<Modal
:modalTitle="$t('package.downloads.modal_title')"
:modalTitle="title"
id="chart-modal"
class="h-full sm:h-min sm:border sm:border-border sm:rounded-lg shadow-xl sm:max-h-[90vh] sm:max-w-3xl"
@transitioned="emit('transitioned')"
>
<div class="font-mono text-sm">
<slot />
Expand Down
Loading
Loading