Skip to content

Commit 5fb7c93

Browse files
authored
feat: Categories Editor — browse, search, and view preset category sets (#143)
Implements #143. Adds the Categories Editor screen at /categories/:projectId with: - Browse all preset category sets (server-backed via /projects/:id/category-sets) - Search/filter by name and tag - View set details (categories, icons, translations) - i18n complete (en, pt, es) Import of .comapeocat files is intentionally excluded (UI commented, data layer preserved). Tracked in #151.
1 parent 3fdb8bb commit 5fb7c93

98 files changed

Lines changed: 8338 additions & 1509 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,14 @@ jobs:
508508
# GHSA-p63j-vcc4-9vmv: @vitest/browser Browser Mode file-access
509509
# bypass. Fixed in 4.1.10 (we have 4.1.10) but bun's advisory DB
510510
# has not been updated to recognise the fix version yet.
511-
run: bun audit --audit-level=high --ignore=GHSA-gv7w-rqvm-qjhr --ignore=GHSA-vmh5-mc38-953g --ignore=GHSA-vxpw-j846-p89q --ignore=GHSA-hm92-r4w5-c3mj --ignore=GHSA-3jxr-9vmj-r5cp --ignore=GHSA-52cp-r559-cp3m --ignore=GHSA-395f-4hp3-45gv --ignore=GHSA-gcfj-64vw-6mp9 --ignore=GHSA-p63j-vcc4-9vmv
511+
#
512+
# GHSA-mh99-v99m-4gvg: brace-expansion DoS via unbounded expansion
513+
# length causing OOM (transitive dev dep via eslint/glob).
514+
# Cannot override to v5 — breaks minimatch's default import.
515+
#
516+
# GHSA-r28c-9q8g-f849: PostCSS source map path traversal
517+
# (transitive dev dep via storybook). Resolved via override.
518+
run: bun audit --audit-level=high --ignore=GHSA-gv7w-rqvm-qjhr --ignore=GHSA-vmh5-mc38-953g --ignore=GHSA-vxpw-j846-p89q --ignore=GHSA-hm92-r4w5-c3mj --ignore=GHSA-3jxr-9vmj-r5cp --ignore=GHSA-52cp-r559-cp3m --ignore=GHSA-395f-4hp3-45gv --ignore=GHSA-gcfj-64vw-6mp9 --ignore=GHSA-p63j-vcc4-9vmv --ignore=GHSA-mh99-v99m-4gvg
512519

513520
# -----------------------------------------------------------------------
514521
# Preview deploy on pull_request

bun.lock

Lines changed: 425 additions & 434 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
"form-data": "^4.0.6",
6666
"joi": "^17.13.4",
6767
"js-yaml": "^3.15.0",
68+
"postcss": "^8.5.23",
6869
"sharp": "^0.35.3",
6970
"shell-quote": "^1.10.0",
7071
"ws": "^8.21.0"
-15 Bytes
Loading
130 Bytes
Loading
-15 Bytes
Loading
-15 Bytes
Loading
-15 Bytes
Loading
228 Bytes
Loading
281 Bytes
Loading

0 commit comments

Comments
 (0)