@hegemonart/get-design-done 1.16.0 → 1.18.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.
- package/.claude-plugin/marketplace.json +7 -5
- package/.claude-plugin/plugin.json +17 -5
- package/CHANGELOG.md +84 -0
- package/README.md +20 -2
- package/agents/design-auditor.md +60 -1
- package/agents/design-doc-writer.md +21 -0
- package/agents/design-executor.md +22 -4
- package/agents/design-pattern-mapper.md +61 -0
- package/agents/motion-mapper.md +74 -9
- package/agents/token-mapper.md +8 -0
- package/package.json +10 -2
- package/reference/components/README.md +27 -23
- package/reference/components/alert.md +198 -0
- package/reference/components/badge.md +202 -0
- package/reference/components/breadcrumbs.md +198 -0
- package/reference/components/chip.md +209 -0
- package/reference/components/command-palette.md +228 -0
- package/reference/components/date-picker.md +227 -0
- package/reference/components/file-upload.md +219 -0
- package/reference/components/list.md +217 -0
- package/reference/components/menu.md +212 -0
- package/reference/components/navbar.md +211 -0
- package/reference/components/pagination.md +205 -0
- package/reference/components/progress.md +210 -0
- package/reference/components/rich-text-editor.md +226 -0
- package/reference/components/sidebar.md +211 -0
- package/reference/components/skeleton.md +197 -0
- package/reference/components/slider.md +208 -0
- package/reference/components/stepper.md +220 -0
- package/reference/components/table.md +229 -0
- package/reference/components/toast.md +200 -0
- package/reference/components/tree.md +225 -0
- package/reference/css-grid-layout.md +835 -0
- package/reference/external/NOTICE.hyperframes +28 -0
- package/reference/image-optimization.md +582 -0
- package/reference/motion-advanced.md +754 -0
- package/reference/motion-easings.md +381 -0
- package/reference/motion-interpolate.md +282 -0
- package/reference/motion-spring.md +234 -0
- package/reference/motion-transition-taxonomy.md +155 -0
- package/reference/motion.md +20 -0
- package/reference/output-contracts/motion-map.schema.json +135 -0
- package/reference/registry.json +183 -0
- package/reference/registry.schema.json +4 -0
- package/reference/variable-fonts-loading.md +532 -0
- package/scripts/lib/easings.cjs +280 -0
- package/scripts/lib/parse-contract.cjs +220 -0
- package/scripts/lib/spring.cjs +160 -0
- package/scripts/tests/test-motion-provenance.sh +64 -0
package/reference/registry.json
CHANGED
|
@@ -260,6 +260,69 @@
|
|
|
260
260
|
"type": "data",
|
|
261
261
|
"description": "Google Fonts catalog (representative sample of 1923-row UUPM data set)"
|
|
262
262
|
},
|
|
263
|
+
{
|
|
264
|
+
"name": "variable-fonts-loading",
|
|
265
|
+
"path": "reference/variable-fonts-loading.md",
|
|
266
|
+
"type": "typography",
|
|
267
|
+
"phase": 18,
|
|
268
|
+
"description": "Variable font axes, font-display trade-offs, WOFF2 subsetting, FOIT/FOUT, fallback metric overrides, GRAD axis for dark mode, system font stacks (REF-14)"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "image-optimization",
|
|
272
|
+
"path": "reference/image-optimization.md",
|
|
273
|
+
"type": "performance",
|
|
274
|
+
"phase": 18,
|
|
275
|
+
"description": "WebP/AVIF/JPEG-XL matrix, srcset+sizes math, art direction, LQIP/BlurHash, lazy-loading, fetchpriority, CDN transforms, image budget enforcement (REF-15)"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "css-grid-layout",
|
|
279
|
+
"path": "reference/css-grid-layout.md",
|
|
280
|
+
"type": "layout",
|
|
281
|
+
"phase": 18,
|
|
282
|
+
"description": "CSS Grid templates, subgrid, container queries, fluid clamp() typography, intrinsic sizing, logical properties, safe-area insets, anchor positioning (REF-16)"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "motion-advanced",
|
|
286
|
+
"path": "reference/motion-advanced.md",
|
|
287
|
+
"type": "motion",
|
|
288
|
+
"phase": 18,
|
|
289
|
+
"description": "Advanced motion: spring physics, FLIP, scroll-driven, View Transitions API, gesture/drag mechanics, clip-path animations, blur crossfades, WAAPI, Framer Motion hardware-accel gotcha, motion cohesion (REF-17)"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "motion-easings",
|
|
293
|
+
"path": "reference/motion-easings.md",
|
|
294
|
+
"type": "motion",
|
|
295
|
+
"phase": 18,
|
|
296
|
+
"description": "12 canonical easing presets from RN MIT upstream — linear/quad/cubic/poly/sin/circle/exp/elastic/back/bounce/bezier + in/out/inOut wrappers; --ease-* token catalog; 60fps settle-times (MOT-01)"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "motion-interpolate",
|
|
300
|
+
"path": "reference/motion-interpolate.md",
|
|
301
|
+
"type": "motion",
|
|
302
|
+
"phase": 18,
|
|
303
|
+
"description": "Input→output range mapping + 4 extrapolation modes (extend|identity|clamp|wrap); taxonomy of progress/scroll/gesture/time-linked animations (MOT-02)"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"name": "motion-spring",
|
|
307
|
+
"path": "reference/motion-spring.md",
|
|
308
|
+
"type": "motion",
|
|
309
|
+
"phase": 18,
|
|
310
|
+
"description": "Spring stiffness/damping/mass triad + 4 canonical presets (gentle/wobbly/stiff/slow) with 60fps settle-times; Framer Motion + React Spring syntax; CSS linear() approximation (MOT-05)"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"name": "motion-transition-taxonomy",
|
|
314
|
+
"path": "reference/motion-transition-taxonomy.md",
|
|
315
|
+
"type": "motion",
|
|
316
|
+
"phase": 18,
|
|
317
|
+
"description": "8 controlled transition families from hyperframes Apache-2.0: 3d, blur, cover, destruction, dissolve, distortion, grid, light — each with definition, canonical examples, when-to-use (MOT-03)"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "motion-map-contract",
|
|
321
|
+
"path": "reference/output-contracts/motion-map.schema.json",
|
|
322
|
+
"type": "output-contract",
|
|
323
|
+
"phase": 18,
|
|
324
|
+
"description": "JSON schema for motion-mapper structured output block — easing, transition_family, duration_class, trigger per animation binding (MOT-04)"
|
|
325
|
+
},
|
|
263
326
|
{
|
|
264
327
|
"name": "components-README",
|
|
265
328
|
"path": "reference/components/README.md",
|
|
@@ -361,6 +424,126 @@
|
|
|
361
424
|
"path": "reference/components/tooltip.md",
|
|
362
425
|
"type": "component-spec",
|
|
363
426
|
"description": "Tooltip spec — no interactive content, hover+focus trigger, 300ms delay, aria-describedby"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"name": "component-toast",
|
|
430
|
+
"path": "reference/components/toast.md",
|
|
431
|
+
"type": "component-spec",
|
|
432
|
+
"description": "Toast spec — role=status vs role=alert, 4–8s auto-dismiss, stacking, UUPM dashboard context"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "component-alert",
|
|
436
|
+
"path": "reference/components/alert.md",
|
|
437
|
+
"type": "component-spec",
|
|
438
|
+
"description": "Alert spec — info/success/warning/error variants, role=alert vs role=status, icon reinforces variant"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"name": "component-progress",
|
|
442
|
+
"path": "reference/components/progress.md",
|
|
443
|
+
"type": "component-spec",
|
|
444
|
+
"description": "Progress spec — determinate (aria-valuenow) vs indeterminate (aria-valuetext), linear + circular"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "component-skeleton",
|
|
448
|
+
"path": "reference/components/skeleton.md",
|
|
449
|
+
"type": "component-spec",
|
|
450
|
+
"description": "Skeleton spec — content-mirror layout, shimmer animation, aria-hidden on elements, aria-busy on container"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "component-badge",
|
|
454
|
+
"path": "reference/components/badge.md",
|
|
455
|
+
"type": "component-spec",
|
|
456
|
+
"description": "Badge spec — count/dot/icon variants, 99+ overflow, aria-label on parent element"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"name": "component-chip",
|
|
460
|
+
"path": "reference/components/chip.md",
|
|
461
|
+
"type": "component-spec",
|
|
462
|
+
"description": "Chip spec — filter/input/suggestion/display variants, aria-pressed on toggle, independent remove aria-label"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"name": "component-menu",
|
|
466
|
+
"path": "reference/components/menu.md",
|
|
467
|
+
"type": "component-spec",
|
|
468
|
+
"description": "Menu spec — role=menu + role=menuitem, arrow-key nav, click-only open, sub-menu ArrowRight"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "component-navbar",
|
|
472
|
+
"path": "reference/components/navbar.md",
|
|
473
|
+
"type": "component-spec",
|
|
474
|
+
"description": "Navbar spec — role=banner + role=navigation, skip link, aria-current=page, hamburger aria-expanded"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "component-sidebar",
|
|
478
|
+
"path": "reference/components/sidebar.md",
|
|
479
|
+
"type": "component-spec",
|
|
480
|
+
"description": "Sidebar spec — aria-label=Secondary, icon+label vs icon-only collapsed, settings-nav + dashboard-nav variants"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"name": "component-breadcrumbs",
|
|
484
|
+
"path": "reference/components/breadcrumbs.md",
|
|
485
|
+
"type": "component-spec",
|
|
486
|
+
"description": "Breadcrumbs spec — aria-current=page on last item, aria-hidden separators, ol not ul"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "component-pagination",
|
|
490
|
+
"path": "reference/components/pagination.md",
|
|
491
|
+
"type": "component-spec",
|
|
492
|
+
"description": "Pagination spec — aria-label=Pagination, aria-current=page, per-page select with visible label"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"name": "component-table",
|
|
496
|
+
"path": "reference/components/table.md",
|
|
497
|
+
"type": "component-spec",
|
|
498
|
+
"description": "Table spec — scope=col on th, aria-sort, aria-selected on rows, role=grid vs role=table, virtualise >200"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "component-list",
|
|
502
|
+
"path": "reference/components/list.md",
|
|
503
|
+
"type": "component-spec",
|
|
504
|
+
"description": "List spec — display (ul/li) vs interactive (role=listbox + role=option), virtualise >100 items"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "component-tree",
|
|
508
|
+
"path": "reference/components/tree.md",
|
|
509
|
+
"type": "component-spec",
|
|
510
|
+
"description": "Tree spec — role=tree + role=treeitem + role=group, aria-expanded, aria-level, aria-busy lazy-load"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "component-command-palette",
|
|
514
|
+
"path": "reference/components/command-palette.md",
|
|
515
|
+
"type": "component-spec",
|
|
516
|
+
"description": "Command-palette spec — role=dialog + aria-modal, focus trap, role=combobox + aria-controls, Cmd/Ctrl+K"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "component-date-picker",
|
|
520
|
+
"path": "reference/components/date-picker.md",
|
|
521
|
+
"type": "component-spec",
|
|
522
|
+
"description": "Date-picker spec — input + range, calendar role=dialog, day gridcell+button, native mobile fallback"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "component-slider",
|
|
526
|
+
"path": "reference/components/slider.md",
|
|
527
|
+
"type": "component-spec",
|
|
528
|
+
"description": "Slider spec — role=slider + aria-valuenow/min/max/valuetext, 44px thumb touch target, Page Up/Down ±10%"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"name": "component-file-upload",
|
|
532
|
+
"path": "reference/components/file-upload.md",
|
|
533
|
+
"type": "component-spec",
|
|
534
|
+
"description": "File-upload spec — drop-zone + picker, input[type=file] never display:none, remove aria-label"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "component-rich-text-editor",
|
|
538
|
+
"path": "reference/components/rich-text-editor.md",
|
|
539
|
+
"type": "component-spec",
|
|
540
|
+
"description": "Rich-text editor spec — contenteditable + role=textbox, toolbar role=toolbar, aria-pressed on toggles"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"name": "component-stepper",
|
|
544
|
+
"path": "reference/components/stepper.md",
|
|
545
|
+
"type": "component-spec",
|
|
546
|
+
"description": "Stepper spec — role=list (not role=tablist), aria-current=step, wizard/onboarding/checkout flow context"
|
|
364
547
|
}
|
|
365
548
|
]
|
|
366
549
|
}
|
|
@@ -38,10 +38,14 @@
|
|
|
38
38
|
"experience",
|
|
39
39
|
"palette",
|
|
40
40
|
"style-vocabulary",
|
|
41
|
+
"typography",
|
|
42
|
+
"layout",
|
|
43
|
+
"performance",
|
|
41
44
|
"component-spec"
|
|
42
45
|
]
|
|
43
46
|
},
|
|
44
47
|
"tier": { "enum": ["L0", "L1", "L2"] },
|
|
48
|
+
"phase": { "type": "integer", "description": "Phase that introduced this entry" },
|
|
45
49
|
"description": { "type": "string" },
|
|
46
50
|
"registered_at": { "type": "string", "format": "date-time" }
|
|
47
51
|
},
|