📦️ Commit deployable plugin

This commit is contained in:
Philipp Stracker 2026-02-25 21:59:24 +01:00
parent 8317a778c0
commit 3589818a1c
No known key found for this signature in database
3 changed files with 23 additions and 3 deletions

2
dist/main.js vendored

File diff suppressed because one or more lines are too long

4
dist/manifest.json vendored
View file

@ -1,10 +1,10 @@
{
"id": "mention-things",
"name": "Mention Things",
"version": "1.0.2",
"version": "1.1.0",
"minAppVersion": "0.15.0",
"description": "Define a list of prefixes to trigger an autocomplete suggestion to insert a link.",
"author": "Philipp Stracker",
"authorUrl": "https://philippstracker.com",
"isDesktopOnly": false
}
}

20
dist/styles.css vendored Normal file
View file

@ -0,0 +1,20 @@
.mention-type-row {
--preview-width: 20ch;
.type-label {
flex: 1 1 auto;
}
.type-preview {
display: inline-block;
min-width: var(--preview-width);
max-width: var(--preview-width);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
font-size: 12px;
opacity: 0.7;
}
}