Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fee116c
chore: bump vue-data-ui from 3.15.9 to 3.15.10 (#1957)
graphieros Mar 6, 2026
0d952fa
fix(a11y): improve toggle switches (#1782)
userquin Mar 6, 2026
b6da02d
fix: fix og image generation errors (#1982)
alexdln Mar 7, 2026
03f7ecd
chore: bump `lint-staged` to `16.3.2` (#1965)
userquin Mar 7, 2026
250127a
fix: update handles for patak (#1989)
vladh Mar 8, 2026
c2e7230
fix: remove border in package suggestion dropdown items (#1970)
iiio2 Mar 8, 2026
48df372
fix(i18n): update Russian translations (#1966)
dragomano Mar 8, 2026
e91c760
chore(deps): update devdependency knip to 5.86.0 and remove unneeded …
cylewaitforit Mar 8, 2026
e374f75
fix(ui): the install command should use the correct version (#1958)
btea Mar 8, 2026
bd73ea9
feat: add bar chart view to compare page (#1974)
graphieros Mar 8, 2026
ed7f8f2
fix: the weekly data anomaly detection was broken for the Svelte anom…
samal-rasmussen Mar 8, 2026
d26e250
chore(i18n): improve french translations (#1994)
huang-julien Mar 8, 2026
2f39f4e
chore(deps): update devdependency eslint-plugin-regexp to v3.1.0 (#2004)
renovate[bot] Mar 9, 2026
089a73b
refactor: remove redundant title attributes from package nav (#1999)
knowler Mar 9, 2026
36bebce
feat: improve badge customization with dynamic text based on contrast…
sandros94 Mar 9, 2026
8baf1a5
fix: various chart improvements (#2003)
graphieros Mar 9, 2026
bbb937b
fix: use resolvedVersion on package page to display data correctly (#…
alex-key Mar 9, 2026
04f3ab9
feat(i18n): localise translations for other git providers (#1962)
WilcoSp Mar 9, 2026
8cea27f
chore(deps): update dependency vue to v3.5.30 (#2008)
renovate[bot] Mar 9, 2026
11842b4
fix: code line highlighting not working with the light theme (#2015)
RYGRIT Mar 10, 2026
ef0f696
fix(i18n): update Czech translations (#2006)
VentyCZ Mar 10, 2026
68ddbfc
feat(ui): highlight slash keyboard shortcut on header/home search bar…
aqandrew Mar 10, 2026
0d82d42
fix: data anomalies in chart (#2012)
jycouet Mar 10, 2026
99c9533
fix(i18n): update Azerbaijani translations (#1991)
chz Mar 10, 2026
87f3aaf
fix: weekly chart prediction and data pipeline extraction (#2014)
jycouet Mar 10, 2026
3712560
fix(ui): versions modal usage button copy (#2007)
MatteoGabriele Mar 10, 2026
3de681d
feat(a11y): add reusable Alert component (#1955)
ShroXd Mar 11, 2026
d3cfce5
feat: add binary file warning (#1959)
ShroXd Mar 11, 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
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ We agree to restrict the following behaviors in our community. Instances, threat

Tensions can occur between community members even when they are trying their best to collaborate. Not every conflict represents a code of conduct violation, and this Code of Conduct reinforces encouraged behaviors and norms that can help avoid conflicts and minimize harm.

When an incident does occur, it is important to report it promptly. To report a possible violation, contact the project stewards (@danielroe and @patak.dev) by DM in our community chat. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project stewards are obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
When an incident does occur, it is important to report it promptly. To report a possible violation, contact the project stewards (@danielroe and @patak.cat) by DM in our community chat. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project stewards are obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

Community Moderators take reports of violations seriously and will make every effort to respond in a timely manner. They will investigate all reports of code of conduct violations, reviewing messages, logs, and recordings, or interviewing witnesses and other participants. Community Moderators will keep investigation and enforcement actions as transparent as possible while prioritizing safety and confidentiality. In order to honor these values, enforcement actions are carried out in private with the involved parties, but communicating to the whole community may be part of a mutually agreed upon resolution.

Expand Down
2 changes: 1 addition & 1 deletion GOVERNANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Not every contributor will reach this level, and that's okay! Maintainers still
The npmx project Stewards are currently:

- **Daniel Roe** ([website](https://roe.dev), [social](https://bsky.app/profile/danielroe.dev), [github](https://github.com/danielroe), [@danielroe](https://chat.npmx.dev))
- **Matias Capeletto** ([website](https://patak.dev), [social](https://bsky.app/profile/patak.dev), [github](https://github.com/patak-dev), [@patak.dev](https://chat.npmx.dev))
- **Matias Capeletto** ([website](https://patak.cat), [social](https://bsky.app/profile/patak.cat), [github](https://github.com/patak-cat), [@patak.cat](https://chat.npmx.dev))

---

Expand Down
13 changes: 8 additions & 5 deletions app/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,16 @@ dd {
}

/* Shiki theme colors */
html.light .shiki,
html.light .shiki span {
html.light .shiki {
color: var(--shiki-light) !important;
background-color: var(--shiki-light-bg) !important;
font-style: var(--shiki-light-font-style) !important;
font-weight: var(--shiki-light-font-weight) !important;
text-decoration: var(--shiki-light-text-decoration) !important;

& span {
color: var(--shiki-light) !important;
font-style: var(--shiki-light-font-style) !important;
font-weight: var(--shiki-light-font-weight) !important;
text-decoration: var(--shiki-light-text-decoration) !important;
}
}

/* Inline code in package descriptions */
Expand Down
41 changes: 41 additions & 0 deletions app/components/Alert.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<script setup lang="ts">
interface Props {
variant: 'warning' | 'error'
title?: string
}

defineProps<Props>()

const WRAPPER_CLASSES: Record<Props['variant'], string> = {
warning: 'border-amber-400/20 bg-amber-500/8',
error: 'border-red-400/20 bg-red-500/8',
}

const TITLE_CLASSES: Record<Props['variant'], string> = {
warning: 'text-amber-800 dark:text-amber-300',
error: 'text-red-800 dark:text-red-300',
}

const BODY_CLASSES: Record<Props['variant'], string> = {
warning: 'text-amber-700 dark:text-amber-400',
error: 'text-red-700 dark:text-red-400',
}

const ROLES: Record<Props['variant'], 'status' | 'alert'> = {
warning: 'status',
error: 'alert',
}
</script>

<template>
<div
:role="ROLES[variant]"
class="border rounded-md px-3 py-2.5"
:class="WRAPPER_CLASSES[variant]"
>
<p v-if="title" class="font-semibold mb-1" :class="TITLE_CLASSES[variant]">{{ title }}</p>
<div class="text-xs" :class="BODY_CLASSES[variant]">
<slot />
</div>
</div>
</template>
Loading
Loading