@monoes/monomindcli 2.15.6 → 2.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. package/.claude/helpers/build-skill-registry.cjs +23 -2
  2. package/.claude/helpers/handlers/route-handler.cjs +89 -3
  3. package/.claude/helpers/handlers/session-restore-handler.cjs +1 -1
  4. package/.claude/helpers/jev-picker.cjs +499 -0
  5. package/.claude/helpers/redact-secrets.cjs +69 -0
  6. package/.claude/skills/mastermind-agent-select/SKILL.md +28 -0
  7. package/dist/src/catalog/blueprints.d.ts +39 -0
  8. package/dist/src/catalog/blueprints.d.ts.map +1 -0
  9. package/dist/src/catalog/blueprints.js +78 -0
  10. package/dist/src/catalog/blueprints.js.map +1 -0
  11. package/dist/src/catalog/digest.d.ts +16 -0
  12. package/dist/src/catalog/digest.d.ts.map +1 -0
  13. package/dist/src/catalog/digest.js +62 -0
  14. package/dist/src/catalog/digest.js.map +1 -0
  15. package/dist/src/catalog/frontmatter.d.ts +23 -0
  16. package/dist/src/catalog/frontmatter.d.ts.map +1 -0
  17. package/dist/src/catalog/frontmatter.js +80 -0
  18. package/dist/src/catalog/frontmatter.js.map +1 -0
  19. package/dist/src/catalog/lifecycle.d.ts +31 -0
  20. package/dist/src/catalog/lifecycle.d.ts.map +1 -0
  21. package/dist/src/catalog/lifecycle.js +78 -0
  22. package/dist/src/catalog/lifecycle.js.map +1 -0
  23. package/dist/src/catalog/projection.d.ts +57 -0
  24. package/dist/src/catalog/projection.d.ts.map +1 -0
  25. package/dist/src/catalog/projection.js +272 -0
  26. package/dist/src/catalog/projection.js.map +1 -0
  27. package/dist/src/catalog/scan.d.ts +37 -0
  28. package/dist/src/catalog/scan.d.ts.map +1 -0
  29. package/dist/src/catalog/scan.js +214 -0
  30. package/dist/src/catalog/scan.js.map +1 -0
  31. package/dist/src/catalog/snapshot.d.ts +62 -0
  32. package/dist/src/catalog/snapshot.d.ts.map +1 -0
  33. package/dist/src/catalog/snapshot.js +183 -0
  34. package/dist/src/catalog/snapshot.js.map +1 -0
  35. package/dist/src/catalog/stage.d.ts +26 -0
  36. package/dist/src/catalog/stage.d.ts.map +1 -0
  37. package/dist/src/catalog/stage.js +316 -0
  38. package/dist/src/catalog/stage.js.map +1 -0
  39. package/dist/src/catalog/state.d.ts +23 -0
  40. package/dist/src/catalog/state.d.ts.map +1 -0
  41. package/dist/src/catalog/state.js +102 -0
  42. package/dist/src/catalog/state.js.map +1 -0
  43. package/dist/src/catalog/types.d.ts +289 -0
  44. package/dist/src/catalog/types.d.ts.map +1 -0
  45. package/dist/src/catalog/types.js +118 -0
  46. package/dist/src/catalog/types.js.map +1 -0
  47. package/dist/src/commands/catalog.d.ts +14 -0
  48. package/dist/src/commands/catalog.d.ts.map +1 -0
  49. package/dist/src/commands/catalog.js +392 -0
  50. package/dist/src/commands/catalog.js.map +1 -0
  51. package/dist/src/commands/doctor-catalog-checks.d.ts +3 -0
  52. package/dist/src/commands/doctor-catalog-checks.d.ts.map +1 -0
  53. package/dist/src/commands/doctor-catalog-checks.js +69 -0
  54. package/dist/src/commands/doctor-catalog-checks.js.map +1 -0
  55. package/dist/src/commands/doctor-decision-checks.d.ts +10 -0
  56. package/dist/src/commands/doctor-decision-checks.d.ts.map +1 -0
  57. package/dist/src/commands/doctor-decision-checks.js +82 -0
  58. package/dist/src/commands/doctor-decision-checks.js.map +1 -0
  59. package/dist/src/commands/doctor.d.ts.map +1 -1
  60. package/dist/src/commands/doctor.js +9 -1
  61. package/dist/src/commands/doctor.js.map +1 -1
  62. package/dist/src/commands/index.d.ts +2 -2
  63. package/dist/src/commands/index.d.ts.map +1 -1
  64. package/dist/src/commands/index.js +4 -1
  65. package/dist/src/commands/index.js.map +1 -1
  66. package/dist/src/commands/org-observe.d.ts.map +1 -1
  67. package/dist/src/commands/org-observe.js +7 -1
  68. package/dist/src/commands/org-observe.js.map +1 -1
  69. package/dist/src/commands/org-skills.d.ts.map +1 -1
  70. package/dist/src/commands/org-skills.js +14 -4
  71. package/dist/src/commands/org-skills.js.map +1 -1
  72. package/dist/src/commands/org.d.ts.map +1 -1
  73. package/dist/src/commands/org.js +8 -1
  74. package/dist/src/commands/org.js.map +1 -1
  75. package/dist/src/commands/pick.d.ts +4 -0
  76. package/dist/src/commands/pick.d.ts.map +1 -0
  77. package/dist/src/commands/pick.js +77 -0
  78. package/dist/src/commands/pick.js.map +1 -0
  79. package/dist/src/commands/route.js +1 -1
  80. package/dist/src/commands/route.js.map +1 -1
  81. package/dist/src/decision/catalogs.d.ts +20 -0
  82. package/dist/src/decision/catalogs.d.ts.map +1 -0
  83. package/dist/src/decision/catalogs.js +64 -0
  84. package/dist/src/decision/catalogs.js.map +1 -0
  85. package/dist/src/decision/jev.d.ts +85 -0
  86. package/dist/src/decision/jev.d.ts.map +1 -0
  87. package/dist/src/decision/jev.js +72 -0
  88. package/dist/src/decision/jev.js.map +1 -0
  89. package/dist/src/decision/picks.d.ts +50 -0
  90. package/dist/src/decision/picks.d.ts.map +1 -0
  91. package/dist/src/decision/picks.js +100 -0
  92. package/dist/src/decision/picks.js.map +1 -0
  93. package/dist/src/init/helpers-generator.d.ts.map +1 -1
  94. package/dist/src/init/helpers-generator.js +7 -0
  95. package/dist/src/init/helpers-generator.js.map +1 -1
  96. package/dist/src/orgrt/checkpoint-ops.d.ts.map +1 -1
  97. package/dist/src/orgrt/checkpoint-ops.js +6 -1
  98. package/dist/src/orgrt/checkpoint-ops.js.map +1 -1
  99. package/dist/src/orgrt/completion-gate.d.ts +15 -0
  100. package/dist/src/orgrt/completion-gate.d.ts.map +1 -1
  101. package/dist/src/orgrt/completion-gate.js +59 -3
  102. package/dist/src/orgrt/completion-gate.js.map +1 -1
  103. package/dist/src/orgrt/daemon.d.ts +18 -1
  104. package/dist/src/orgrt/daemon.d.ts.map +1 -1
  105. package/dist/src/orgrt/daemon.js +33 -3
  106. package/dist/src/orgrt/daemon.js.map +1 -1
  107. package/dist/src/orgrt/decisions.d.ts +24 -0
  108. package/dist/src/orgrt/decisions.d.ts.map +1 -1
  109. package/dist/src/orgrt/decisions.js +164 -18
  110. package/dist/src/orgrt/decisions.js.map +1 -1
  111. package/dist/src/orgrt/review-packet.d.ts +1 -1
  112. package/dist/src/orgrt/review-packet.d.ts.map +1 -1
  113. package/dist/src/orgrt/review-packet.js +2 -2
  114. package/dist/src/orgrt/review-packet.js.map +1 -1
  115. package/dist/src/orgrt/session.d.ts +9 -0
  116. package/dist/src/orgrt/session.d.ts.map +1 -1
  117. package/dist/src/orgrt/session.js +24 -2
  118. package/dist/src/orgrt/session.js.map +1 -1
  119. package/dist/src/orgrt/skill-library.d.ts +10 -1
  120. package/dist/src/orgrt/skill-library.d.ts.map +1 -1
  121. package/dist/src/orgrt/skill-library.js +53 -4
  122. package/dist/src/orgrt/skill-library.js.map +1 -1
  123. package/dist/src/orgrt/task-dag.d.ts +3 -0
  124. package/dist/src/orgrt/task-dag.d.ts.map +1 -1
  125. package/dist/src/orgrt/task-dag.js +6 -0
  126. package/dist/src/orgrt/task-dag.js.map +1 -1
  127. package/dist/src/orgrt/types.d.ts +2 -0
  128. package/dist/src/orgrt/types.d.ts.map +1 -1
  129. package/dist/src/orgrt/types.js +4 -0
  130. package/dist/src/orgrt/types.js.map +1 -1
  131. package/dist/src/platform-adapters/mutation.d.ts +34 -0
  132. package/dist/src/platform-adapters/mutation.d.ts.map +1 -0
  133. package/dist/src/platform-adapters/mutation.js +188 -0
  134. package/dist/src/platform-adapters/mutation.js.map +1 -0
  135. package/dist/src/platform-adapters/operations.d.ts +7 -1
  136. package/dist/src/platform-adapters/operations.d.ts.map +1 -1
  137. package/dist/src/platform-adapters/operations.js +18 -76
  138. package/dist/src/platform-adapters/operations.js.map +1 -1
  139. package/dist/src/routing/jev-step.d.ts +17 -0
  140. package/dist/src/routing/jev-step.d.ts.map +1 -0
  141. package/dist/src/routing/jev-step.js +27 -0
  142. package/dist/src/routing/jev-step.js.map +1 -0
  143. package/dist/src/routing/route-layer-factory.d.ts.map +1 -1
  144. package/dist/src/routing/route-layer-factory.js +16 -1
  145. package/dist/src/routing/route-layer-factory.js.map +1 -1
  146. package/dist/src/utils/redaction.d.ts.map +1 -1
  147. package/dist/src/utils/redaction.js +19 -4
  148. package/dist/src/utils/redaction.js.map +1 -1
  149. package/dist/tsconfig.tsbuildinfo +1 -1
  150. package/package.json +4 -4
  151. package/.claude/skills/monodesign/SKILL.md +0 -257
  152. package/.claude/skills/monodesign/adapt.md +0 -53
  153. package/.claude/skills/monodesign/agents/monodesign-asset-producer.md +0 -100
  154. package/.claude/skills/monodesign/agents/monodesign-manual-edit-applier.md +0 -103
  155. package/.claude/skills/monodesign/animate.md +0 -65
  156. package/.claude/skills/monodesign/audit.md +0 -89
  157. package/.claude/skills/monodesign/bolder.md +0 -50
  158. package/.claude/skills/monodesign/clarify.md +0 -64
  159. package/.claude/skills/monodesign/colorize.md +0 -68
  160. package/.claude/skills/monodesign/craft.md +0 -51
  161. package/.claude/skills/monodesign/critique.md +0 -66
  162. package/.claude/skills/monodesign/delight.md +0 -47
  163. package/.claude/skills/monodesign/distill.md +0 -56
  164. package/.claude/skills/monodesign/document.md +0 -83
  165. package/.claude/skills/monodesign/extract.md +0 -74
  166. package/.claude/skills/monodesign/harden.md +0 -65
  167. package/.claude/skills/monodesign/init.md +0 -30
  168. package/.claude/skills/monodesign/layout.md +0 -36
  169. package/.claude/skills/monodesign/live.md +0 -34
  170. package/.claude/skills/monodesign/onboard.md +0 -50
  171. package/.claude/skills/monodesign/optimize.md +0 -64
  172. package/.claude/skills/monodesign/overdrive.md +0 -56
  173. package/.claude/skills/monodesign/polish.md +0 -68
  174. package/.claude/skills/monodesign/quieter.md +0 -57
  175. package/.claude/skills/monodesign/reference/adapt.md +0 -312
  176. package/.claude/skills/monodesign/reference/adapt.native.md +0 -58
  177. package/.claude/skills/monodesign/reference/android.md +0 -40
  178. package/.claude/skills/monodesign/reference/animate.md +0 -203
  179. package/.claude/skills/monodesign/reference/antipatterns-catalog.md +0 -410
  180. package/.claude/skills/monodesign/reference/audit.md +0 -135
  181. package/.claude/skills/monodesign/reference/audit.native.md +0 -139
  182. package/.claude/skills/monodesign/reference/bolder.md +0 -120
  183. package/.claude/skills/monodesign/reference/brand-workflow.md +0 -180
  184. package/.claude/skills/monodesign/reference/brand.md +0 -108
  185. package/.claude/skills/monodesign/reference/clarify.md +0 -288
  186. package/.claude/skills/monodesign/reference/codex.md +0 -105
  187. package/.claude/skills/monodesign/reference/cognitive-load.md +0 -106
  188. package/.claude/skills/monodesign/reference/color-and-contrast.md +0 -105
  189. package/.claude/skills/monodesign/reference/colorize.md +0 -257
  190. package/.claude/skills/monodesign/reference/component-specs.md +0 -260
  191. package/.claude/skills/monodesign/reference/component-states.md +0 -274
  192. package/.claude/skills/monodesign/reference/component-system.md +0 -358
  193. package/.claude/skills/monodesign/reference/copy-formulas.md +0 -160
  194. package/.claude/skills/monodesign/reference/craft.md +0 -123
  195. package/.claude/skills/monodesign/reference/critique.md +0 -780
  196. package/.claude/skills/monodesign/reference/delight.md +0 -302
  197. package/.claude/skills/monodesign/reference/design-principles.md +0 -246
  198. package/.claude/skills/monodesign/reference/distill.md +0 -111
  199. package/.claude/skills/monodesign/reference/document.md +0 -429
  200. package/.claude/skills/monodesign/reference/extract.md +0 -69
  201. package/.claude/skills/monodesign/reference/harden.md +0 -347
  202. package/.claude/skills/monodesign/reference/heuristics-scoring.md +0 -234
  203. package/.claude/skills/monodesign/reference/hooks.md +0 -92
  204. package/.claude/skills/monodesign/reference/image-prompts.md +0 -130
  205. package/.claude/skills/monodesign/reference/init.md +0 -221
  206. package/.claude/skills/monodesign/reference/interaction-design.md +0 -189
  207. package/.claude/skills/monodesign/reference/ios.md +0 -45
  208. package/.claude/skills/monodesign/reference/layout.md +0 -185
  209. package/.claude/skills/monodesign/reference/live.md +0 -710
  210. package/.claude/skills/monodesign/reference/motion-design.md +0 -109
  211. package/.claude/skills/monodesign/reference/onboard.md +0 -234
  212. package/.claude/skills/monodesign/reference/optimize.md +0 -258
  213. package/.claude/skills/monodesign/reference/overdrive.md +0 -130
  214. package/.claude/skills/monodesign/reference/personas.md +0 -179
  215. package/.claude/skills/monodesign/reference/polish.md +0 -241
  216. package/.claude/skills/monodesign/reference/pre-delivery-checklist.md +0 -108
  217. package/.claude/skills/monodesign/reference/product.md +0 -60
  218. package/.claude/skills/monodesign/reference/quieter.md +0 -99
  219. package/.claude/skills/monodesign/reference/responsive-design.md +0 -114
  220. package/.claude/skills/monodesign/reference/shape.md +0 -165
  221. package/.claude/skills/monodesign/reference/spatial-design.md +0 -100
  222. package/.claude/skills/monodesign/reference/teach.md +0 -10
  223. package/.claude/skills/monodesign/reference/token-architecture.md +0 -222
  224. package/.claude/skills/monodesign/reference/typeset.md +0 -301
  225. package/.claude/skills/monodesign/reference/typography.md +0 -159
  226. package/.claude/skills/monodesign/reference/ux-research.md +0 -143
  227. package/.claude/skills/monodesign/reference/ux-rules.md +0 -211
  228. package/.claude/skills/monodesign/reference/ux-writing.md +0 -107
  229. package/.claude/skills/monodesign/scripts/command-metadata.json +0 -94
  230. package/.claude/skills/monodesign/scripts/context-signals.mjs +0 -260
  231. package/.claude/skills/monodesign/scripts/context.mjs +0 -1065
  232. package/.claude/skills/monodesign/scripts/critique-storage.mjs +0 -416
  233. package/.claude/skills/monodesign/scripts/detect-csp.mjs +0 -193
  234. package/.claude/skills/monodesign/scripts/detect.mjs +0 -33
  235. package/.claude/skills/monodesign/scripts/detector/browser/injected/index.mjs +0 -1960
  236. package/.claude/skills/monodesign/scripts/detector/cli/main.mjs +0 -321
  237. package/.claude/skills/monodesign/scripts/detector/design-system.mjs +0 -814
  238. package/.claude/skills/monodesign/scripts/detector/detect-antipatterns-browser.js +0 -5628
  239. package/.claude/skills/monodesign/scripts/detector/detect-antipatterns.mjs +0 -50
  240. package/.claude/skills/monodesign/scripts/detector/engines/browser/detect-url.mjs +0 -259
  241. package/.claude/skills/monodesign/scripts/detector/engines/browser/drivers.mjs +0 -339
  242. package/.claude/skills/monodesign/scripts/detector/engines/regex/detect-text.mjs +0 -636
  243. package/.claude/skills/monodesign/scripts/detector/engines/static-html/css-cascade.mjs +0 -1016
  244. package/.claude/skills/monodesign/scripts/detector/engines/static-html/detect-html.mjs +0 -253
  245. package/.claude/skills/monodesign/scripts/detector/engines/visual/screenshot-contrast.mjs +0 -198
  246. package/.claude/skills/monodesign/scripts/detector/findings.mjs +0 -12
  247. package/.claude/skills/monodesign/scripts/detector/fix/css-regions.mjs +0 -181
  248. package/.claude/skills/monodesign/scripts/detector/fix/fixers.mjs +0 -373
  249. package/.claude/skills/monodesign/scripts/detector/fix/index.mjs +0 -426
  250. package/.claude/skills/monodesign/scripts/detector/node/file-system.mjs +0 -198
  251. package/.claude/skills/monodesign/scripts/detector/profile/profiler.mjs +0 -166
  252. package/.claude/skills/monodesign/scripts/detector/registry/antipatterns.mjs +0 -563
  253. package/.claude/skills/monodesign/scripts/detector/rules/checks.mjs +0 -3024
  254. package/.claude/skills/monodesign/scripts/detector/shared/color.mjs +0 -124
  255. package/.claude/skills/monodesign/scripts/detector/shared/constants.mjs +0 -101
  256. package/.claude/skills/monodesign/scripts/detector/shared/fonts.mjs +0 -30
  257. package/.claude/skills/monodesign/scripts/detector/shared/inline-ignores.mjs +0 -148
  258. package/.claude/skills/monodesign/scripts/detector/shared/page.mjs +0 -7
  259. package/.claude/skills/monodesign/scripts/hook-admin.mjs +0 -694
  260. package/.claude/skills/monodesign/scripts/hook-before-edit.mjs +0 -516
  261. package/.claude/skills/monodesign/scripts/hook-lib.mjs +0 -1785
  262. package/.claude/skills/monodesign/scripts/hook.mjs +0 -61
  263. package/.claude/skills/monodesign/scripts/lib/design-parser.mjs +0 -809
  264. package/.claude/skills/monodesign/scripts/lib/is-generated.mjs +0 -69
  265. package/.claude/skills/monodesign/scripts/lib/monodesign-config.mjs +0 -640
  266. package/.claude/skills/monodesign/scripts/lib/monodesign-paths.mjs +0 -129
  267. package/.claude/skills/monodesign/scripts/lib/provider.mjs +0 -4
  268. package/.claude/skills/monodesign/scripts/lib/target-args.mjs +0 -42
  269. package/.claude/skills/monodesign/scripts/live/browser-script-parts.mjs +0 -50
  270. package/.claude/skills/monodesign/scripts/live/completion.mjs +0 -19
  271. package/.claude/skills/monodesign/scripts/live/event-validation.mjs +0 -137
  272. package/.claude/skills/monodesign/scripts/live/insert-ui.mjs +0 -458
  273. package/.claude/skills/monodesign/scripts/live/manual-apply.mjs +0 -939
  274. package/.claude/skills/monodesign/scripts/live/manual-edit-routes.mjs +0 -357
  275. package/.claude/skills/monodesign/scripts/live/manual-edits-buffer.mjs +0 -152
  276. package/.claude/skills/monodesign/scripts/live/session-store.mjs +0 -293
  277. package/.claude/skills/monodesign/scripts/live/svelte-component.mjs +0 -826
  278. package/.claude/skills/monodesign/scripts/live/sveltekit-adapter.mjs +0 -279
  279. package/.claude/skills/monodesign/scripts/live/ui-core.mjs +0 -180
  280. package/.claude/skills/monodesign/scripts/live/vocabulary.mjs +0 -36
  281. package/.claude/skills/monodesign/scripts/live-accept.mjs +0 -812
  282. package/.claude/skills/monodesign/scripts/live-browser-dom.js +0 -147
  283. package/.claude/skills/monodesign/scripts/live-browser-session.js +0 -124
  284. package/.claude/skills/monodesign/scripts/live-browser.js +0 -11213
  285. package/.claude/skills/monodesign/scripts/live-commit-manual-edits.mjs +0 -1241
  286. package/.claude/skills/monodesign/scripts/live-complete.mjs +0 -75
  287. package/.claude/skills/monodesign/scripts/live-copy-edit-agent.mjs +0 -683
  288. package/.claude/skills/monodesign/scripts/live-discard-manual-edits.mjs +0 -51
  289. package/.claude/skills/monodesign/scripts/live-inject.mjs +0 -596
  290. package/.claude/skills/monodesign/scripts/live-insert.mjs +0 -272
  291. package/.claude/skills/monodesign/scripts/live-manual-edit-evidence.mjs +0 -363
  292. package/.claude/skills/monodesign/scripts/live-poll.mjs +0 -384
  293. package/.claude/skills/monodesign/scripts/live-resume.mjs +0 -94
  294. package/.claude/skills/monodesign/scripts/live-server.mjs +0 -1210
  295. package/.claude/skills/monodesign/scripts/live-status.mjs +0 -61
  296. package/.claude/skills/monodesign/scripts/live-target.mjs +0 -30
  297. package/.claude/skills/monodesign/scripts/live-wrap.mjs +0 -884
  298. package/.claude/skills/monodesign/scripts/live.mjs +0 -297
  299. package/.claude/skills/monodesign/scripts/modern-screenshot.umd.js +0 -14
  300. package/.claude/skills/monodesign/scripts/palette.mjs +0 -635
  301. package/.claude/skills/monodesign/scripts/pin.mjs +0 -221
  302. package/.claude/skills/monodesign/shape.md +0 -71
  303. package/.claude/skills/monodesign/teach.md +0 -18
  304. package/.claude/skills/monodesign/typeset.md +0 -59
@@ -1,1016 +0,0 @@
1
- import fs from 'node:fs';
2
- import path from 'node:path';
3
-
4
- import { profileStep, recordProfileEvent } from '../../profile/profiler.mjs';
5
- import { parseAnyColor, resolveLengthPx, resolveVarRefs } from '../../rules/checks.mjs';
6
-
7
- // ---------------------------------------------------------------------------
8
- // jsdom CSS-variable border override map
9
- // ---------------------------------------------------------------------------
10
- //
11
- // jsdom's CSSOM silently drops any border shorthand that contains a var()
12
- // reference — the computed style for the element then shows empty width,
13
- // empty style, and a default black color. That's enough to hide the most
14
- // common real-world side-tab pattern in AI-generated pages:
15
- //
16
- // :root { --brand: #87a8ff; }
17
- // .card { border-left: 5px solid var(--brand); border-radius: 4px; }
18
- //
19
- // Real browsers (and therefore the browser detector path) resolve var()
20
- // natively, so this only affects the Node jsdom path.
21
- //
22
- // This pre-pass walks the stylesheets, finds any rule whose per-side or
23
- // all-sides border property contains var(), resolves the var() against
24
- // :root-level custom properties (read from the documentElement's computed
25
- // style, which jsdom DOES handle correctly), and attaches the resolved
26
- // width+color to every element that matches the rule's selector. The
27
- // Node-side `checkElementBorders` adapter consumes that map as a fallback
28
- // whenever jsdom's computed style came back empty.
29
- //
30
- // Limitations (intentional, to keep the pass simple):
31
- // * Only :root-level custom properties are resolved. Scoped overrides on
32
- // descendants are not tracked — uncommon in practice and would require
33
- // a per-element cascade walk.
34
- // * @media / @supports wrapped rules are ignored (jsdom often mishandles
35
- // these anyway).
36
- // * The fallback only fills sides that jsdom left empty, so any rule
37
- // whose border parses normally still wins via the computed style.
38
-
39
- const BORDER_SHORTHAND_RE = /^(\d+(?:\.\d+)?)px\s+(solid|dashed|dotted|double|groove|ridge|inset|outset)\s+(.+)$/i;
40
-
41
- // isNeutralColor only understands rgba()/oklch()/lch()/lab()/hsl()/hwb().
42
- // CSS variables typically hold hex or named colors, so normalize those to
43
- // rgb() before handing the value off to the shared check. Anything we don't
44
- // recognise is passed through unchanged — isNeutralColor then treats it as
45
- // non-neutral, which is the safer default (matches the oklch-era bugfix).
46
- const NAMED_COLORS = {
47
- white: [255, 255, 255], black: [0, 0, 0], gray: [128, 128, 128],
48
- grey: [128, 128, 128], silver: [192, 192, 192], red: [255, 0, 0],
49
- green: [0, 128, 0], blue: [0, 0, 255], yellow: [255, 255, 0],
50
- };
51
-
52
- function normalizeColorForCheck(value) {
53
- if (!value) return value;
54
- const v = value.trim();
55
- const hex6 = v.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i);
56
- if (hex6) {
57
- const [r, g, b] = [parseInt(hex6[1], 16), parseInt(hex6[2], 16), parseInt(hex6[3], 16)];
58
- return `rgb(${r}, ${g}, ${b})`;
59
- }
60
- const hex3 = v.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i);
61
- if (hex3) {
62
- const [r, g, b] = [
63
- parseInt(hex3[1] + hex3[1], 16),
64
- parseInt(hex3[2] + hex3[2], 16),
65
- parseInt(hex3[3] + hex3[3], 16),
66
- ];
67
- return `rgb(${r}, ${g}, ${b})`;
68
- }
69
- const named = NAMED_COLORS[v.toLowerCase()];
70
- if (named) return `rgb(${named[0]}, ${named[1]}, ${named[2]})`;
71
- return v;
72
- }
73
-
74
- function buildBorderOverrideMap(document, window) {
75
- const map = new Map();
76
- const rootStyle = window.getComputedStyle(document.documentElement);
77
-
78
- function resolveVar(value, depth = 0) {
79
- if (!value || depth > 10 || !value.includes('var(')) return value;
80
- return value.replace(
81
- /var\(\s*(--[\w-]+)\s*(?:,\s*([^)]+))?\s*\)/g,
82
- (_, name, fallback) => {
83
- const v = rootStyle.getPropertyValue(name).trim();
84
- if (v) return resolveVar(v, depth + 1);
85
- if (fallback) return resolveVar(fallback.trim(), depth + 1);
86
- return '';
87
- }
88
- );
89
- }
90
-
91
- function parseShorthand(text) {
92
- const m = text.trim().match(BORDER_SHORTHAND_RE);
93
- if (!m) return null;
94
- return { width: parseFloat(m[1]), color: normalizeColorForCheck(m[3]) };
95
- }
96
-
97
- // Read from the per-property accessors on rule.style. jsdom preserves
98
- // each border-* shorthand it parsed, even when the overall cssText has
99
- // been truncated (e.g. a `border: 1px solid var(...)` followed by a
100
- // `border-left: ...` loses the first declaration but keeps the second).
101
- const SIDE_PROPS = [
102
- ['borderLeft', 'Left'],
103
- ['borderRight', 'Right'],
104
- ['borderTop', 'Top'],
105
- ['borderBottom', 'Bottom'],
106
- ['borderInlineStart', 'Left'],
107
- ['borderInlineEnd', 'Right'],
108
- ];
109
-
110
- for (const sheet of document.styleSheets) {
111
- let rules;
112
- try { rules = sheet.cssRules || []; } catch { continue; }
113
- for (const rule of rules) {
114
- // CSSStyleRule only; skip @media / @keyframes / @supports wrappers.
115
- if (rule.type !== 1 || !rule.style || !rule.selectorText) continue;
116
-
117
- const perSide = {};
118
-
119
- for (const [prop, side] of SIDE_PROPS) {
120
- const val = rule.style[prop];
121
- if (!val?.includes('var(')) continue;
122
- const parsed = parseShorthand(resolveVar(val));
123
- if (parsed?.color) perSide[side] = parsed;
124
- }
125
-
126
- // Uniform `border: <w> <style> var(...)` applies to every side the
127
- // per-side map didn't already claim.
128
- const borderAll = rule.style.border;
129
- if (borderAll?.includes('var(')) {
130
- const parsed = parseShorthand(resolveVar(borderAll));
131
- if (parsed?.color) {
132
- for (const s of ['Top', 'Right', 'Bottom', 'Left']) {
133
- if (!perSide[s]) perSide[s] = parsed;
134
- }
135
- }
136
- }
137
-
138
- // Longhand `border-*-color: var(...)` with width/style in separate
139
- // declarations. Rare in AI-generated pages, but cheap to cover.
140
- for (const [prop, side] of [
141
- ['borderLeftColor', 'Left'],
142
- ['borderRightColor', 'Right'],
143
- ['borderTopColor', 'Top'],
144
- ['borderBottomColor', 'Bottom'],
145
- ]) {
146
- const val = rule.style[prop];
147
- if (!val?.includes('var(')) continue;
148
- const resolved = resolveVar(val).trim();
149
- if (!resolved) continue;
150
- // Width may or may not come from this rule — that's fine; the
151
- // adapter only substitutes the color when jsdom left it as a
152
- // literal var() string.
153
- if (!perSide[side]) perSide[side] = { width: 0, color: normalizeColorForCheck(resolved) };
154
- }
155
-
156
- if (Object.keys(perSide).length === 0) continue;
157
-
158
- let matched;
159
- try { matched = document.querySelectorAll(rule.selectorText); }
160
- catch { continue; }
161
-
162
- for (const el of matched) {
163
- const existing = map.get(el);
164
- if (existing) {
165
- // Later rules overwrite earlier ones — approximates source-order
166
- // cascade for equal-specificity rules and is good enough for the
167
- // uncontested var()-dropped sides we're trying to recover.
168
- Object.assign(existing, perSide);
169
- } else {
170
- map.set(el, { ...perSide });
171
- }
172
- }
173
- }
174
- }
175
-
176
- return map;
177
- }
178
-
179
- // Strip `@layer NAME { … }` wrappers from a CSS / HTML source, leaving
180
- // the inner rules as flat CSS. jsdom doesn't implement CSS @layer, so
181
- // any rule inside a layer block becomes invisible to getComputedStyle.
182
- // Tailwind v4 makes this ubiquitous: every utility class lives in
183
- // `@layer utilities`, and Preflight lives in `@layer base`. Without
184
- // unwrapping, every Tailwind-styled element returns empty computed
185
- // styles. We walk the source character-by-character, balancing braces
186
- // so we correctly handle nested style rules inside the layer block.
187
- function unwrapCssAtLayer(source) {
188
- // biome-ignore lint/complexity/useOptionalChain: exported helper with no typed callers; `source?.includes` would throw for a falsy non-string (0/false) that this guard currently returns unchanged
189
- if (!source || !source.includes('@layer')) return source;
190
- // Find `@layer <name>? {` openers. The match starts at the @, and
191
- // we then balance braces from the opening { onward.
192
- const re = /@layer\b[^{;]*\{/g;
193
- let out = '';
194
- let lastIdx = 0;
195
- let m;
196
- while ((m = re.exec(source)) !== null) {
197
- const openStart = m.index;
198
- const openEnd = m.index + m[0].length; // position right after `{`
199
- let depth = 1;
200
- let i = openEnd;
201
- while (i < source.length && depth > 0) {
202
- const c = source.charCodeAt(i);
203
- if (c === 0x7b /* { */) depth++;
204
- else if (c === 0x7d /* } */) depth--;
205
- i++;
206
- }
207
- if (depth !== 0) {
208
- // Unbalanced — bail and return source unchanged.
209
- return source;
210
- }
211
- // Emit everything before the @layer, then the inner contents
212
- // (between the opening { and the matched closing }), then advance.
213
- out += source.slice(lastIdx, openStart);
214
- out += source.slice(openEnd, i - 1); // i-1 = position of the closing }
215
- lastIdx = i;
216
- re.lastIndex = i;
217
- }
218
- out += source.slice(lastIdx);
219
- return out;
220
- }
221
-
222
- // ---------------------------------------------------------------------------
223
- // Static HTML/CSS detection (default for local HTML files)
224
- // ---------------------------------------------------------------------------
225
-
226
- const STATIC_INHERITED_PROPS = new Set([
227
- 'color', 'fontFamily', 'fontSize', 'fontStyle', 'fontWeight',
228
- 'lineHeight', 'letterSpacing', 'textTransform', 'textAlign', 'hyphens',
229
- 'webkitHyphens',
230
- ]);
231
-
232
- const STATIC_DEFAULT_STYLE = {
233
- color: 'rgb(0, 0, 0)',
234
- backgroundColor: 'rgba(0, 0, 0, 0)',
235
- backgroundImage: 'none',
236
- borderTopWidth: '0px',
237
- borderRightWidth: '0px',
238
- borderBottomWidth: '0px',
239
- borderLeftWidth: '0px',
240
- borderTopColor: 'rgb(0, 0, 0)',
241
- borderRightColor: 'rgb(0, 0, 0)',
242
- borderBottomColor: 'rgb(0, 0, 0)',
243
- borderLeftColor: 'rgb(0, 0, 0)',
244
- borderRadius: '0px',
245
- outlineWidth: '0px',
246
- outlineColor: 'rgb(0, 0, 0)',
247
- outlineStyle: 'none',
248
- boxShadow: 'none',
249
- fontFamily: '',
250
- fontSize: '16px',
251
- fontStyle: 'normal',
252
- fontWeight: '400',
253
- lineHeight: 'normal',
254
- letterSpacing: 'normal',
255
- textTransform: 'none',
256
- textAlign: 'start',
257
- hyphens: 'manual',
258
- webkitHyphens: 'manual',
259
- transitionProperty: '',
260
- transitionTimingFunction: '',
261
- animationName: '',
262
- animationTimingFunction: '',
263
- webkitBackgroundClip: '',
264
- backgroundClip: '',
265
- width: '',
266
- height: '',
267
- paddingTop: '0px',
268
- paddingRight: '0px',
269
- paddingBottom: '0px',
270
- paddingLeft: '0px',
271
- marginTop: '0px',
272
- marginRight: '0px',
273
- marginBottom: '0px',
274
- marginLeft: '0px',
275
- position: 'static',
276
- visibility: 'visible',
277
- top: 'auto',
278
- right: 'auto',
279
- bottom: 'auto',
280
- left: 'auto',
281
- inset: '',
282
- display: '',
283
- overflow: 'visible',
284
- overflowX: 'visible',
285
- overflowY: 'visible',
286
- };
287
-
288
- const STATIC_PROP_MAP = {
289
- 'background-color': 'backgroundColor',
290
- 'background-image': 'backgroundImage',
291
- 'background-clip': 'backgroundClip',
292
- '-webkit-background-clip': 'webkitBackgroundClip',
293
- 'border-radius': 'borderRadius',
294
- 'border-top-width': 'borderTopWidth',
295
- 'border-right-width': 'borderRightWidth',
296
- 'border-bottom-width': 'borderBottomWidth',
297
- 'border-left-width': 'borderLeftWidth',
298
- 'border-top-color': 'borderTopColor',
299
- 'border-right-color': 'borderRightColor',
300
- 'border-bottom-color': 'borderBottomColor',
301
- 'border-left-color': 'borderLeftColor',
302
- 'outline-width': 'outlineWidth',
303
- 'outline-color': 'outlineColor',
304
- 'outline-style': 'outlineStyle',
305
- 'box-shadow': 'boxShadow',
306
- 'font-family': 'fontFamily',
307
- 'font-size': 'fontSize',
308
- 'font-style': 'fontStyle',
309
- 'font-weight': 'fontWeight',
310
- 'line-height': 'lineHeight',
311
- 'letter-spacing': 'letterSpacing',
312
- 'text-transform': 'textTransform',
313
- 'text-align': 'textAlign',
314
- 'hyphens': 'hyphens',
315
- '-webkit-hyphens': 'webkitHyphens',
316
- 'transition-property': 'transitionProperty',
317
- 'transition-timing-function': 'transitionTimingFunction',
318
- 'animation-name': 'animationName',
319
- 'animation-timing-function': 'animationTimingFunction',
320
- 'width': 'width',
321
- 'height': 'height',
322
- 'padding-top': 'paddingTop',
323
- 'padding-right': 'paddingRight',
324
- 'padding-bottom': 'paddingBottom',
325
- 'padding-left': 'paddingLeft',
326
- 'margin-top': 'marginTop',
327
- 'margin-right': 'marginRight',
328
- 'margin-bottom': 'marginBottom',
329
- 'margin-left': 'marginLeft',
330
- 'position': 'position',
331
- 'visibility': 'visibility',
332
- 'top': 'top',
333
- 'right': 'right',
334
- 'bottom': 'bottom',
335
- 'left': 'left',
336
- 'inset': 'inset',
337
- 'display': 'display',
338
- 'overflow': 'overflow',
339
- 'overflow-x': 'overflowX',
340
- 'overflow-y': 'overflowY',
341
- };
342
-
343
- const STATIC_NAMED_COLORS = {
344
- black: { r: 0, g: 0, b: 0, a: 1 },
345
- white: { r: 255, g: 255, b: 255, a: 1 },
346
- transparent: { r: 0, g: 0, b: 0, a: 0 },
347
- gray: { r: 128, g: 128, b: 128, a: 1 },
348
- grey: { r: 128, g: 128, b: 128, a: 1 },
349
- silver: { r: 192, g: 192, b: 192, a: 1 },
350
- red: { r: 255, g: 0, b: 0, a: 1 },
351
- green: { r: 0, g: 128, b: 0, a: 1 },
352
- blue: { r: 0, g: 0, b: 255, a: 1 },
353
- };
354
-
355
- function splitCssList(value) {
356
- const parts = [];
357
- let depth = 0, quote = '', start = 0;
358
- for (let i = 0; i < value.length; i++) {
359
- const ch = value[i];
360
- if (quote) {
361
- if (ch === quote && value[i - 1] !== '\\') quote = '';
362
- continue;
363
- }
364
- if (ch === '"' || ch === "'") { quote = ch; continue; }
365
- if (ch === '(' || ch === '[') depth++;
366
- else if (ch === ')' || ch === ']') depth = Math.max(0, depth - 1);
367
- else if (ch === ',' && depth === 0) {
368
- parts.push(value.slice(start, i).trim());
369
- start = i + 1;
370
- }
371
- }
372
- const tail = value.slice(start).trim();
373
- if (tail) parts.push(tail);
374
- return parts;
375
- }
376
-
377
- function splitCssTokens(value) {
378
- const tokens = [];
379
- let depth = 0, quote = '', current = '';
380
- for (let i = 0; i < value.length; i++) {
381
- const ch = value[i];
382
- if (quote) {
383
- current += ch;
384
- if (ch === quote && value[i - 1] !== '\\') quote = '';
385
- continue;
386
- }
387
- if (ch === '"' || ch === "'") { quote = ch; current += ch; continue; }
388
- if (ch === '(') { depth++; current += ch; continue; }
389
- if (ch === ')') { depth = Math.max(0, depth - 1); current += ch; continue; }
390
- if (/\s/.test(ch) && depth === 0) {
391
- if (current) { tokens.push(current); current = ''; }
392
- continue;
393
- }
394
- current += ch;
395
- }
396
- if (current) tokens.push(current);
397
- return tokens;
398
- }
399
-
400
- function cssPropToCamel(prop) {
401
- if (!prop) return prop;
402
- const mapped = STATIC_PROP_MAP[prop];
403
- if (mapped) return mapped;
404
- return prop.replace(/-([a-z])/g, (_m, ch) => ch.toUpperCase());
405
- }
406
-
407
- function staticColorToCss(c) {
408
- if (!c) return '';
409
- if (c.a != null && c.a < 1) return `rgba(${c.r}, ${c.g}, ${c.b}, ${Number(c.a.toFixed(3))})`;
410
- return `rgb(${c.r}, ${c.g}, ${c.b})`;
411
- }
412
-
413
- function parseStaticColor(value) {
414
- const parsed = parseAnyColor(value);
415
- if (parsed) return parsed;
416
- const named = STATIC_NAMED_COLORS[String(value || '').trim().toLowerCase()];
417
- return named ? { ...named } : null;
418
- }
419
-
420
- function extractStaticColor(value) {
421
- if (!value) return '';
422
- const raw = String(value).trim();
423
- if (/^var\(/i.test(raw)) return raw;
424
- const colorLike = raw.match(/(?:rgba?\([^)]+\)|oklch\([^)]+\)|oklab\([^)]+\)|lch\([^)]+\)|lab\([^)]+\)|hsla?\([^)]+\)|hwb\([^)]+\)|#[0-9a-f]{3,8}\b|\b(?:black|white|gray|grey|silver|red|green|blue|transparent)\b)/i);
425
- if (!colorLike) return '';
426
- return colorLike[0];
427
- }
428
-
429
- function normalizeStaticCssValue(prop, value, customProps, parentStyle, currentStyle = null) {
430
- let resolved = resolveVarRefs(String(value || '').trim(), customProps);
431
- if (resolved === 'inherit') return parentStyle?.[prop] || STATIC_DEFAULT_STYLE[prop] || '';
432
- const isModernBorderColor = /^border[A-Z][a-z]+Color$/.test(prop) && /^(?:oklch|oklab|lch|lab|hsl|hwb)\(/i.test(resolved);
433
- if (!isModernBorderColor && (/color$/i.test(prop) || prop === 'color' || prop === 'backgroundColor')) {
434
- const parsed = parseStaticColor(resolved);
435
- if (parsed) resolved = staticColorToCss(parsed);
436
- }
437
- if (prop === 'fontSize') {
438
- const base = parseFloat(parentStyle?.fontSize) || 16;
439
- const px = resolveLengthPx(resolved, base);
440
- if (px != null) resolved = `${px}px`;
441
- }
442
- if (prop === 'letterSpacing') {
443
- const base = parseFloat(currentStyle?.fontSize || parentStyle?.fontSize) || 16;
444
- const px = resolveLengthPx(resolved, base);
445
- if (px != null) resolved = `${px}px`;
446
- }
447
- if (prop === 'lineHeight' && resolved !== 'normal') {
448
- const base = parseFloat(currentStyle?.fontSize || parentStyle?.fontSize) || 16;
449
- const px = resolveLengthPx(resolved, base);
450
- if (px != null) resolved = `${px}px`;
451
- }
452
- return resolved;
453
- }
454
-
455
- function expandStaticBoxValues(tokens) {
456
- if (tokens.length === 0) return ['0px', '0px', '0px', '0px'];
457
- if (tokens.length === 1) return [tokens[0], tokens[0], tokens[0], tokens[0]];
458
- if (tokens.length === 2) return [tokens[0], tokens[1], tokens[0], tokens[1]];
459
- if (tokens.length === 3) return [tokens[0], tokens[1], tokens[2], tokens[1]];
460
- return [tokens[0], tokens[1], tokens[2], tokens[3]];
461
- }
462
-
463
- function parseStaticBorder(value) {
464
- const tokens = splitCssTokens(value);
465
- let width = '', color = '';
466
- for (const token of tokens) {
467
- if (!width && /^-?[\d.]+(?:px|rem|em|%)$/.test(token)) width = token;
468
- if (!color) color = extractStaticColor(token);
469
- }
470
- return { width, color };
471
- }
472
-
473
- function parseStaticFont(value) {
474
- const out = [];
475
- const slashParts = value.match(/(?:^|\s)([\d.]+(?:px|rem|em|%))(?:\/([^\s]+))?/);
476
- if (/\bitalic\b/i.test(value)) out.push(['fontStyle', 'italic']);
477
- const weight = value.match(/\b([1-9]00|bold|normal|lighter|bolder)\b/i);
478
- if (weight) out.push(['fontWeight', weight[1]]);
479
- if (slashParts) {
480
- out.push(['fontSize', slashParts[1]]);
481
- if (slashParts[2]) out.push(['lineHeight', slashParts[2]]);
482
- const familyStart = value.indexOf(slashParts[0]) + slashParts[0].length;
483
- const family = value.slice(familyStart).trim();
484
- if (family) out.push(['fontFamily', family]);
485
- }
486
- return out;
487
- }
488
-
489
- function parseStaticTransition(value) {
490
- const props = [];
491
- const timings = [];
492
- for (const item of splitCssList(value)) {
493
- const tokens = splitCssTokens(item);
494
- const timing = tokens.find(token => /^(?:ease|linear|step-|cubic-bezier\()/i.test(token));
495
- if (timing) timings.push(timing);
496
- const prop = tokens.find(token => /^[a-z-]+$/i.test(token) && !/^(?:ease|linear|infinite|alternate|forwards|backwards|both|normal|none)$/.test(token) && !/s$/.test(token));
497
- if (prop) props.push(prop);
498
- }
499
- return {
500
- property: props.join(', '),
501
- timing: timings.join(', '),
502
- };
503
- }
504
-
505
- function parseStaticAnimation(value) {
506
- const names = [];
507
- const timings = [];
508
- for (const item of splitCssList(value)) {
509
- const tokens = splitCssTokens(item);
510
- const timing = tokens.find(token => /^(?:ease|linear|step-|cubic-bezier\()/i.test(token));
511
- if (timing) timings.push(timing);
512
- const name = tokens.find(token =>
513
- /^[a-z_-][\w-]*$/i.test(token) &&
514
- !/^(?:ease|linear|infinite|alternate|forwards|backwards|both|normal|none|running|paused)$/.test(token)
515
- );
516
- if (name) names.push(name);
517
- }
518
- return {
519
- name: names.join(', '),
520
- timing: timings.join(', '),
521
- };
522
- }
523
-
524
- function expandStaticDeclaration(prop, value) {
525
- const p = prop.toLowerCase();
526
- const v = String(value || '').trim();
527
- if (!v) return [];
528
- if (p.startsWith('--')) return [[p, v]];
529
- if (p === 'background') {
530
- const out = [];
531
- const hasImage = /gradient|url\(/i.test(v);
532
- if (hasImage) out.push(['backgroundImage', v]);
533
- const beforeImage = hasImage ? v.split(/(?:repeating-)?(?:linear|radial|conic)-gradient\(|url\(/i)[0] : v;
534
- const color = extractStaticColor(hasImage ? beforeImage : v);
535
- if (color) out.push(['backgroundColor', color]);
536
- return out;
537
- }
538
- if (p === 'border') {
539
- const parsed = parseStaticBorder(v);
540
- const out = [];
541
- for (const side of ['Top', 'Right', 'Bottom', 'Left']) {
542
- if (parsed.width) out.push([`border${side}Width`, parsed.width]);
543
- if (parsed.color) out.push([`border${side}Color`, parsed.color]);
544
- }
545
- return out;
546
- }
547
- if (p === 'outline') {
548
- // `outline` shorthand: width | style | color, in any order. Reuse the
549
- // border parser for width + color, then sniff a style keyword from the
550
- // tokens (solid|dashed|...). `outline: 0` (single-token zero) zeros
551
- // the width and effectively hides the outline.
552
- const tokens = splitCssTokens(v);
553
- const parsed = parseStaticBorder(v);
554
- const styleToken = tokens.find(t =>
555
- /^(none|hidden|solid|dashed|dotted|double|groove|ridge|inset|outset)$/i.test(t)
556
- );
557
- const out = [];
558
- if (parsed.width) out.push(['outlineWidth', parsed.width]);
559
- if (parsed.color) out.push(['outlineColor', parsed.color]);
560
- if (styleToken) out.push(['outlineStyle', styleToken.toLowerCase()]);
561
- // `outline: 0` with no other tokens: explicit zero width.
562
- if (!parsed.width && /^0(?:px|rem|em|%)?$/.test(v.trim())) {
563
- out.push(['outlineWidth', '0px']);
564
- }
565
- return out;
566
- }
567
- const sideMatch = p.match(/^border-(top|right|bottom|left)$/);
568
- if (sideMatch) {
569
- const parsed = parseStaticBorder(v);
570
- const side = sideMatch[1][0].toUpperCase() + sideMatch[1].slice(1);
571
- return [
572
- ...(parsed.width ? [[`border${side}Width`, parsed.width]] : []),
573
- ...(parsed.color ? [[`border${side}Color`, parsed.color]] : []),
574
- ];
575
- }
576
- if (p === 'border-width') {
577
- const vals = expandStaticBoxValues(splitCssTokens(v));
578
- return [
579
- ['borderTopWidth', vals[0]],
580
- ['borderRightWidth', vals[1]],
581
- ['borderBottomWidth', vals[2]],
582
- ['borderLeftWidth', vals[3]],
583
- ];
584
- }
585
- if (p === 'border-color') {
586
- const vals = expandStaticBoxValues(splitCssTokens(v));
587
- return [
588
- ['borderTopColor', vals[0]],
589
- ['borderRightColor', vals[1]],
590
- ['borderBottomColor', vals[2]],
591
- ['borderLeftColor', vals[3]],
592
- ];
593
- }
594
- if (p === 'padding') {
595
- const vals = expandStaticBoxValues(splitCssTokens(v));
596
- return [
597
- ['paddingTop', vals[0]],
598
- ['paddingRight', vals[1]],
599
- ['paddingBottom', vals[2]],
600
- ['paddingLeft', vals[3]],
601
- ];
602
- }
603
- if (p === 'margin') {
604
- const vals = expandStaticBoxValues(splitCssTokens(v));
605
- return [
606
- ['marginTop', vals[0]],
607
- ['marginRight', vals[1]],
608
- ['marginBottom', vals[2]],
609
- ['marginLeft', vals[3]],
610
- ];
611
- }
612
- if (p === 'font') return parseStaticFont(v);
613
- if (p === 'transition') {
614
- const parsed = parseStaticTransition(v);
615
- return [
616
- ...(parsed.property ? [['transitionProperty', parsed.property]] : []),
617
- ...(parsed.timing ? [['transitionTimingFunction', parsed.timing]] : []),
618
- ];
619
- }
620
- if (p === 'animation') {
621
- const parsed = parseStaticAnimation(v);
622
- return [
623
- ...(parsed.name ? [['animationName', parsed.name]] : []),
624
- ...(parsed.timing ? [['animationTimingFunction', parsed.timing]] : []),
625
- ];
626
- }
627
- const mapped = cssPropToCamel(p);
628
- if (STATIC_DEFAULT_STYLE[mapped] != null || STATIC_INHERITED_PROPS.has(mapped)) {
629
- return [[mapped, v]];
630
- }
631
- return [];
632
- }
633
-
634
- function compareStaticPriority(a, b) {
635
- if (!a) return true;
636
- if (!!b.important !== !!a.important) return !!b.important;
637
- if (!!b.inline !== !!a.inline) return !!b.inline;
638
- for (let i = 0; i < 3; i++) {
639
- if ((b.specificity[i] || 0) !== (a.specificity[i] || 0)) {
640
- return (b.specificity[i] || 0) > (a.specificity[i] || 0);
641
- }
642
- }
643
- return b.order >= a.order;
644
- }
645
-
646
- function staticSpecificity(selector) {
647
- const noWhere = selector.replace(/:where\([^)]*\)/g, '');
648
- const ids = (noWhere.match(/#[\w-]+/g) || []).length;
649
- const classes = (noWhere.match(/\.[\w-]+|\[[^\]]+\]|:(?!:)[\w-]+(?:\([^)]*\))?/g) || []).length;
650
- const stripped = noWhere
651
- .replace(/#[\w-]+/g, ' ')
652
- .replace(/\.[\w-]+|\[[^\]]+\]|:{1,2}[\w-]+(?:\([^)]*\))?/g, ' ')
653
- .replace(/[*>+~(),]/g, ' ');
654
- const types = (stripped.match(/\b[a-zA-Z][\w-]*\b/g) || []).length;
655
- return [ids, classes, types];
656
- }
657
-
658
- function applyStaticDeclaration(specified, node, prop, value, meta) {
659
- let map = specified.get(node);
660
- if (!map) { map = new Map(); specified.set(node, map); }
661
- for (const [expandedProp, expandedValue] of expandStaticDeclaration(prop, value)) {
662
- const existing = map.get(expandedProp);
663
- const next = { ...meta, prop: expandedProp, value: expandedValue };
664
- if (compareStaticPriority(existing, next)) map.set(expandedProp, next);
665
- }
666
- }
667
-
668
- function parseStaticStyleAttribute(styleText, orderBase = 0) {
669
- const decls = [];
670
- for (const part of String(styleText || '').split(';')) {
671
- const idx = part.indexOf(':');
672
- if (idx <= 0) continue;
673
- const prop = part.slice(0, idx).trim();
674
- let value = part.slice(idx + 1).trim();
675
- const important = /!important\s*$/i.test(value);
676
- value = value.replace(/\s*!important\s*$/i, '').trim();
677
- decls.push({ prop, value, important, order: orderBase + decls.length });
678
- }
679
- return decls;
680
- }
681
-
682
- function collectStaticCssRules(cssText, csstree) {
683
- const rules = [];
684
- let ast;
685
- try {
686
- ast = csstree.parse(cssText, { positions: false, parseValue: true, parseCustomProperty: false });
687
- } catch {
688
- return rules;
689
- }
690
- let order = 0;
691
- const walkList = (list, atRuleStack = []) => {
692
- list?.forEach?.(node => {
693
- if (node.type === 'Rule' && node.block) {
694
- if (atRuleStack.some(name => /keyframes$/i.test(name))) return;
695
- const selectorText = csstree.generate(node.prelude).trim();
696
- const declarations = [];
697
- node.block.children?.forEach?.(child => {
698
- if (child.type !== 'Declaration') return;
699
- declarations.push({
700
- prop: child.property,
701
- value: csstree.generate(child.value).trim(),
702
- important: !!child.important,
703
- });
704
- });
705
- for (const selector of splitCssList(selectorText)) {
706
- if (selector) rules.push({ selector, declarations, specificity: staticSpecificity(selector), order: order++ });
707
- }
708
- return;
709
- }
710
- if (node.type === 'Atrule' && node.block) {
711
- const name = String(node.name || '').toLowerCase();
712
- if (name === 'media' || name === 'supports' || name === 'layer') {
713
- walkList(node.block.children, [...atRuleStack, name]);
714
- }
715
- }
716
- });
717
- };
718
- walkList(ast.children);
719
- return rules;
720
- }
721
-
722
- class StaticElement {
723
- constructor(node, doc) {
724
- this.node = node;
725
- this._doc = doc;
726
- this.nodeType = 1;
727
- this.tagName = String(node.name || '').toUpperCase();
728
- this.nodeName = this.tagName;
729
- }
730
- get parentElement() {
731
- let cur = this.node.parent;
732
- while (cur && cur.type !== 'tag') cur = cur.parent;
733
- return cur ? this._doc.wrap(cur) : null;
734
- }
735
- get previousElementSibling() {
736
- let cur = this.node.prev;
737
- while (cur && cur.type !== 'tag') cur = cur.prev;
738
- return cur ? this._doc.wrap(cur) : null;
739
- }
740
- get children() {
741
- return (this.node.children || []).filter(child => child.type === 'tag').map(child => this._doc.wrap(child));
742
- }
743
- get childNodes() {
744
- return (this.node.children || []).map(child => {
745
- if (child.type === 'text') return { nodeType: 3, textContent: child.data || '' };
746
- if (child.type === 'tag') return this._doc.wrap(child);
747
- return { nodeType: 8, textContent: child.data || '' };
748
- });
749
- }
750
- get textContent() {
751
- return this._doc.domutils.textContent(this.node);
752
- }
753
- get className() {
754
- return this.getAttribute('class') || '';
755
- }
756
- get id() {
757
- return this.getAttribute('id') || '';
758
- }
759
- getAttribute(name) {
760
- return this.node.attribs?.[name] ?? null;
761
- }
762
- querySelector(selector) {
763
- try {
764
- const found = this._doc.selectOne(selector, this.node.children || []);
765
- return found ? this._doc.wrap(found) : null;
766
- } catch {
767
- return null;
768
- }
769
- }
770
- querySelectorAll(selector) {
771
- try {
772
- return this._doc.selectAll(selector, this.node.children || []).map(node => this._doc.wrap(node));
773
- } catch {
774
- return [];
775
- }
776
- }
777
- closest(selector) {
778
- let cur = this.node;
779
- while (cur && cur.type === 'tag') {
780
- try {
781
- if (this._doc.is(cur, selector)) return this._doc.wrap(cur);
782
- } catch {
783
- return null;
784
- }
785
- cur = cur.parent;
786
- while (cur && cur.type !== 'tag') cur = cur.parent;
787
- }
788
- return null;
789
- }
790
- contains(other) {
791
- let cur = other?.node || null;
792
- while (cur) {
793
- if (cur === this.node) return true;
794
- cur = cur.parent;
795
- }
796
- return false;
797
- }
798
- }
799
-
800
- class StaticDocument {
801
- constructor(root, modules) {
802
- this.root = root;
803
- this.selectAll = modules.selectAll;
804
- this.selectOne = modules.selectOne;
805
- this.is = modules.is;
806
- this.domutils = modules.domutils;
807
- this._wrappers = new WeakMap();
808
- this._styleMap = new WeakMap();
809
- }
810
- wrap(node) {
811
- let wrapped = this._wrappers.get(node);
812
- if (!wrapped) {
813
- wrapped = new StaticElement(node, this);
814
- this._wrappers.set(node, wrapped);
815
- }
816
- return wrapped;
817
- }
818
- querySelectorAll(selector) {
819
- try {
820
- return this.selectAll(selector, this.root.children || []).map(node => this.wrap(node));
821
- } catch {
822
- return [];
823
- }
824
- }
825
- querySelector(selector) {
826
- try {
827
- const found = this.selectOne(selector, this.root.children || []);
828
- return found ? this.wrap(found) : null;
829
- } catch {
830
- return null;
831
- }
832
- }
833
- get documentElement() {
834
- return this.querySelector('html');
835
- }
836
- get body() {
837
- return this.querySelector('body');
838
- }
839
- setStyle(node, style) {
840
- this._styleMap.set(node, style);
841
- }
842
- getStyle(el) {
843
- return this._styleMap.get(el.node) || makeStaticStyle();
844
- }
845
- }
846
-
847
- function makeStaticStyle(values = {}) {
848
- const style = { ...STATIC_DEFAULT_STYLE, ...values };
849
- style.getPropertyValue = (prop) => {
850
- const key = cssPropToCamel(prop);
851
- return style[key] || style[prop] || '';
852
- };
853
- return style;
854
- }
855
-
856
- function buildStaticWindow(staticDoc) {
857
- return {
858
- document: staticDoc,
859
- getComputedStyle: (el) => staticDoc.getStyle(el),
860
- };
861
- }
862
-
863
- function collectStaticCssText(root, fileDir, profile, filePath, modules) {
864
- const styleTexts = [];
865
- for (const styleEl of modules.selectAll('style', root.children || [])) {
866
- styleTexts.push(modules.domutils.textContent(styleEl));
867
- }
868
- const links = modules.selectAll('link', root.children || []);
869
- for (const link of links) {
870
- const rel = link.attribs?.rel || '';
871
- const href = link.attribs?.href || '';
872
- if (!/\bstylesheet\b/i.test(rel) || !href || /^(https?:)?\/\//i.test(href)) continue;
873
- const cssPath = path.resolve(fileDir, href);
874
- try {
875
- const css = profileStep(profile, {
876
- engine: 'static-html',
877
- phase: 'preprocess',
878
- ruleId: 'inline-linked-stylesheet',
879
- target: filePath,
880
- detail: href,
881
- }, () => fs.readFileSync(cssPath, 'utf-8'));
882
- styleTexts.push(css);
883
- } catch { /* skip unreadable */ }
884
- }
885
- return styleTexts.join('\n');
886
- }
887
-
888
- function buildStaticStyleMap(root, staticDoc, cssText, modules, profile, filePath) {
889
- const specified = new Map();
890
- const allNodes = modules.selectAll('*', root.children || []);
891
- const rules = profileStep(profile, {
892
- engine: 'static-html',
893
- phase: 'parse-css',
894
- ruleId: 'css-rules',
895
- target: filePath,
896
- }, () => collectStaticCssRules(cssText, modules.csstree));
897
-
898
- profileStep(profile, {
899
- engine: 'static-html',
900
- phase: 'selector-match',
901
- ruleId: 'css-selectors',
902
- target: filePath,
903
- }, () => {
904
- for (const rule of rules) {
905
- let matched;
906
- try {
907
- matched = modules.selectAll(rule.selector, root.children || []);
908
- } catch {
909
- recordProfileEvent(profile, {
910
- engine: 'static-html',
911
- phase: 'selector-match',
912
- ruleId: 'unsupported-selector',
913
- target: filePath,
914
- ms: 0,
915
- findings: 0,
916
- detail: rule.selector,
917
- });
918
- continue;
919
- }
920
- for (const node of matched) {
921
- for (const decl of rule.declarations) {
922
- applyStaticDeclaration(specified, node, decl.prop, decl.value, {
923
- important: decl.important,
924
- specificity: rule.specificity,
925
- order: rule.order,
926
- inline: false,
927
- });
928
- }
929
- }
930
- }
931
-
932
- let inlineOrder = rules.length + 1;
933
- for (const node of allNodes) {
934
- const styleText = node.attribs?.style;
935
- if (!styleText) continue;
936
- for (const decl of parseStaticStyleAttribute(styleText, inlineOrder)) {
937
- applyStaticDeclaration(specified, node, decl.prop, decl.value, {
938
- important: decl.important,
939
- specificity: [1, 0, 0],
940
- order: decl.order,
941
- inline: true,
942
- });
943
- }
944
- inlineOrder += 1000;
945
- }
946
- });
947
-
948
- const computeNode = (node, parentStyle = null, parentCustom = new Map()) => {
949
- const specifiedMap = specified.get(node) || new Map();
950
- const customProps = new Map(parentCustom);
951
- for (const [prop, decl] of specifiedMap) {
952
- if (prop.startsWith('--')) customProps.set(prop, resolveVarRefs(decl.value, customProps));
953
- }
954
- const values = {};
955
- for (const prop of Object.keys(STATIC_DEFAULT_STYLE)) {
956
- if (STATIC_INHERITED_PROPS.has(prop) && parentStyle?.[prop] != null) values[prop] = parentStyle[prop];
957
- else values[prop] = STATIC_DEFAULT_STYLE[prop];
958
- }
959
- for (const [prop, decl] of specifiedMap) {
960
- if (prop.startsWith('--')) continue;
961
- values[prop] = normalizeStaticCssValue(prop, decl.value, customProps, parentStyle, values);
962
- }
963
- const style = makeStaticStyle(values);
964
- staticDoc.setStyle(node, style);
965
- for (const child of node.children || []) {
966
- if (child.type === 'tag') computeNode(child, style, customProps);
967
- }
968
- };
969
-
970
- profileStep(profile, {
971
- engine: 'static-html',
972
- phase: 'cascade',
973
- ruleId: 'compute-styles',
974
- target: filePath,
975
- }, () => {
976
- for (const child of root.children || []) {
977
- if (child.type === 'tag') computeNode(child);
978
- }
979
- });
980
- }
981
-
982
- export {
983
- BORDER_SHORTHAND_RE,
984
- NAMED_COLORS,
985
- normalizeColorForCheck,
986
- buildBorderOverrideMap,
987
- unwrapCssAtLayer,
988
- STATIC_INHERITED_PROPS,
989
- STATIC_DEFAULT_STYLE,
990
- STATIC_PROP_MAP,
991
- STATIC_NAMED_COLORS,
992
- splitCssList,
993
- splitCssTokens,
994
- cssPropToCamel,
995
- staticColorToCss,
996
- parseStaticColor,
997
- extractStaticColor,
998
- normalizeStaticCssValue,
999
- expandStaticBoxValues,
1000
- parseStaticBorder,
1001
- parseStaticFont,
1002
- parseStaticTransition,
1003
- parseStaticAnimation,
1004
- expandStaticDeclaration,
1005
- compareStaticPriority,
1006
- staticSpecificity,
1007
- applyStaticDeclaration,
1008
- parseStaticStyleAttribute,
1009
- collectStaticCssRules,
1010
- StaticElement,
1011
- StaticDocument,
1012
- makeStaticStyle,
1013
- buildStaticWindow,
1014
- collectStaticCssText,
1015
- buildStaticStyleMap,
1016
- };