mirror of
https://github.com/penpot/penpot.git
synced 2026-09-10 22:19:19 +00:00
* 🐛 Fix stroke width token dropdown closing mid-interaction The stroke-row* key included a hash of applied-tokens, forcing a full remount whenever the async token-resolution pipeline updated that state (e.g. after a detach action settles). If the remount landed while the width dropdown was open, it destroyed the dropdown and reset its open state, permanently closing it before the user could pick a token. Drop the hash from the key so the row only remounts on actual structural changes (add/remove/reorder), not on every token resolution tick. AI-assisted-by: claude-sonnet-5 * 🐛 Fix crash when a typography token has a nil value A composite typography token saved with no fields filled in stores a nil :value. That value reached StyleDictionary's tokens-studio font-styles preprocessor, which assumes a typography value is never null and threw, crashing token resolution for every other token in the file. Reject the nil value at the source in the typography token form validation, and as defense in depth, filter nil-valued tokens out of every resolve-tokens* entry point before they reach StyleDictionary, tagging them with the existing empty-input error instead. Also remove a stray debug prn left in find-refs. AI-assisted-by: claude-sonnet-5 * 🔧 Gitignore local CLAUDE.md Keep the commit-conventions instructions file local to each contributor's checkout instead of tracking it in the repo. AI-assisted-by: claude-sonnet-5 * ⚡ Use a single transducer to tag invalid-value tokens merge-invalid-value-tokens ran three separate passes over the token map (remove, map, into) and then merged the result back in. Combine the remove/map steps into one ns-level transducer, defined once instead of rebuilt on every call, and pass resolved as the seed to into so the trailing merge isn't needed either. AI-assisted-by: claude-sonnet-5 * ♻️ Drop redundant t/testing wrapper in nil-value token test The outer t/testing just repeated the deftest's own name and added nothing the two inner t/testing blocks (each covering one concrete assertion group) don't already say. AI-assisted-by: claude-sonnet-5 * 🐛 Fail the nil-value token test on a resolution error rx/sub! only handles the success case, so if token resolution ever errors instead, done is never called and the async test hangs instead of failing. Switch to rx/subs! with an error handler that reports the failure and calls done, matching the pattern already used elsewhere in the tokens test suite. AI-assisted-by: claude-sonnet-5
110 lines
1.7 KiB
Plaintext
110 lines
1.7 KiB
Plaintext
.pnp.*
|
|
*-init.clj
|
|
*.css.json
|
|
*.jar
|
|
*.orig
|
|
*.penpot
|
|
*.css.json
|
|
.calva
|
|
.clj-kondo
|
|
.cpcache
|
|
.lsp
|
|
.env
|
|
.nrepl-port
|
|
.nyc_output
|
|
.rebel_readline_history
|
|
.repl
|
|
opencode.json
|
|
.opencode/package-lock.json
|
|
/*.jpg
|
|
/*.md
|
|
!CHANGES.md
|
|
!CONTRIBUTING.md
|
|
!README.md
|
|
!AGENTS.md
|
|
!CODE_OF_CONDUCT.md
|
|
!SECURITY.md
|
|
!HIGHLIGHTS.md
|
|
/*.png
|
|
/*.svg
|
|
/*.sql
|
|
/*.txt
|
|
/*.yml
|
|
/*.zip
|
|
/.clj-kondo/.cache
|
|
/_dump
|
|
/notes
|
|
/plans
|
|
/prompts
|
|
/playground/
|
|
/backend/*.md
|
|
!/backend/AGENTS.md
|
|
/backend/.shadow-cljs
|
|
/backend/*.sql
|
|
/backend/*.txt
|
|
/backend/assets/
|
|
/backend/builtin-templates
|
|
/backend/dist/
|
|
/backend/logs/
|
|
/backend/resources/public/assets
|
|
/backend/resources/public/media
|
|
/backend/target/
|
|
/backend/experiments
|
|
/backend/scripts/_env.local
|
|
/bundle*
|
|
/clj-profiler/
|
|
/common/coverage
|
|
/common/target
|
|
/common/.shadow-cljs
|
|
/docker/images/bundle*
|
|
/exporter/target
|
|
/exporter/.shadow-cljs
|
|
/frontend/.storybook/preview-body.html
|
|
/frontend/.storybook/preview-head.html
|
|
/frontend/playwright-report/
|
|
/frontend/playwright/ui/visual-specs/
|
|
/frontend/text-editor/src/wasm/
|
|
/frontend/dist/
|
|
/frontend/npm-debug.log
|
|
/frontend/out/
|
|
/frontend/package-lock.json
|
|
/frontend/resources/fonts/experiments
|
|
/frontend/resources/public/*
|
|
/frontend/src/app/render_wasm/api/shared.js
|
|
/frontend/storybook-static/
|
|
/frontend/target/
|
|
/frontend/test-results/
|
|
/frontend/.shadow-cljs
|
|
/nexus/
|
|
/tmp/
|
|
/vendor/**/target
|
|
/vendor/svgclean/bundle*.js
|
|
/web
|
|
/library/target/
|
|
/library/*.zip
|
|
/external
|
|
/penpot-nitrate
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
/render-wasm/target/
|
|
/media-processor/dist/
|
|
/**/node_modules
|
|
/**/.yarn/*
|
|
/.pnpm-store
|
|
/.vscode
|
|
/.idea
|
|
*.iml
|
|
/.claude
|
|
/CLAUDE.md
|
|
/.playwright-mcp
|
|
/.devenv/mcp/
|
|
/opencode.json
|
|
/.opencode/plans
|
|
/.opencode/reports
|
|
/.opencode/prompts
|
|
/.ci-logs
|
|
/.codex/
|
|
/tools/__pycache__
|