-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
2685 lines (2685 loc) · 164 KB
/
Copy pathlibrary.json
File metadata and controls
2685 lines (2685 loc) · 164 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schemaVersion": 1,
"library": {
"name": "UI Design Library",
"fileKey": "gXT4bIDrkgva2uSzY763oG",
"url": "https://www.figma.com/design/gXT4bIDrkgva2uSzY763oG/UI-Design-Library",
"tier": "organization",
"expectedOwner": "Verndale Organization",
"ownershipStatus": "maintainer-verification-required-before-publish",
"publishing": {
"figmaLibrary": "explicit-maintainer-action",
"ci": "read-only-validation"
},
"tokenPolicy": {
"componentSource": "src/tokens/semantic.css",
"componentVariableCollectionId": "38:3",
"documentationPresentation": "Cumulative Foundations",
"documentationPresentationOnly": true,
"modeLimit": 20,
"defaultMode": "Cumulative",
"maximumActiveClientModes": 19
},
"promotionPattern": {
"version": "direct-canonical-responsive-v1",
"handoffTarget": "direct-canonical-instance",
"componentFrameContents": "component-only",
"annotationPlacement": "outside-component-instance",
"canonicalLayerNaming": "ui-design-brain",
"autoLayoutRequired": true,
"viewportWidths": {
"desktop": 1440,
"tabletLarge": 1024,
"tabletSmall": 768,
"mobile": 390
},
"interactionStates": {
"presentationName": "Interaction states",
"storyExport": "InteractionStates",
"specimenRole": "documentation",
"masterProperties": "unchanged",
"instanceConnection": "registered-master",
"labelPlacement": "outside-component-instance",
"visualSource": "semantic-variables",
"rasterScreenshots": false
},
"tokenBindings": {
"canvasSurface": {
"figmaVariable": "code/color/surface/base",
"cssToken": "--color-surface-base",
"resolvedValue": "#ffffff"
},
"specimenSurface": {
"figmaVariable": "code/color/surface/sunken",
"cssToken": "--color-surface-sunken",
"resolvedValue": "#f4f5f7"
},
"specimenPadding": {
"figmaVariable": "code/spacing/page-margin",
"cssToken": "--spacing-page-margin",
"resolvedValue": "1.25rem"
},
"annotationGap": {
"figmaVariable": "code/spacing/s",
"cssToken": "--spacing-s",
"resolvedValue": "1rem"
},
"variantGap": {
"figmaVariable": "code/spacing/xl",
"cssToken": "--spacing-xl",
"resolvedValue": "3rem"
},
"viewportRowGap": {
"figmaVariable": "code/spacing/xl",
"cssToken": "--spacing-xl",
"resolvedValue": "3rem"
},
"sectionInset": {
"figmaVariable": "code/spacing/m",
"cssToken": "--spacing-m",
"resolvedValue": "1.5rem"
}
},
"visualAudit": [
"canonical instance is the unambiguous developer handoff target",
"variants and viewport rows have token-bound whitespace",
"alignment, padding, margins, clipping, and containment pass",
"component visuals and dimensions match the public code implementation"
]
}
},
"promotion": {
"definitionOfDone": [
"ready-for-dev documentation matches the Button Light template",
"component visuals use library Tailwind semantic tokens",
"canonical component name is unchanged",
"developer handoff target is the direct canonical component instance",
"annotations remain outside the component-only handoff frame",
"responsive specimens cover 1440, 1024, 768, and 390 pixel viewports when applicable",
"storybook and Figma interaction-state coverage is recorded",
"alignment, margins, padding, whitespace, clipping, and containment are audited",
"source-parity, adversarial, and design review findings are fixed and recorded",
"candidate components remain unpublished pending maintainer action",
"stable node identity is registered",
"repository contracts pass"
]
},
"pilot": {
"componentIds": [
"button-light",
"button-dark",
"section-header",
"alert",
"card",
"card-media",
"modal"
]
},
"nodeMigrations": [],
"components": [
{
"id": "button-light",
"canonical": "Button",
"slug": "button",
"familyPage": true,
"exportName": "Button",
"publicImport": "@verndale/ui-design-library/components/button",
"componentPath": "components/button",
"storyPath": "components/button/Button.stories.tsx",
"storyParity": "exact",
"storyProps": [
"children",
"presentation",
"variant",
"size",
"surface",
"startIcon",
"endIcon",
"type",
"disabled",
"onClick",
"aria-label",
"className",
"classNames"
],
"codeOnlyProps": ["type", "onClick", "aria-label", "className", "classNames"],
"fixedProps": [
{ "codeProp": "surface", "value": "light" },
{ "codeProp": "presentation", "value": "label" }
],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "button",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/button",
"privateAuditDigest": "342ee614589966d4979626cfd97cbd12023e3f16766fc113be9ea5063cc34e08",
"decisionIds": ["sp-button-001", "sp-button-002"],
"representationDecisions": [
{
"decisionId": "sp-button-002",
"implementationKey": "button",
"surfaces": ["ai-registry", "code", "figma", "storybook"]
}
],
"requiredRepresentationSurfaces": ["ai-registry", "code", "figma", "storybook"],
"representations": []
},
"figma": {
"pageId": "11:5",
"pageName": "Button \u2014 Light",
"nodeId": "22:2",
"nodeKey": "a3cd7e509e56e2fbbccc73b120f5538acdd038ec",
"nodeType": "COMPONENT_SET",
"nodeName": "Button",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-20-button-source-parity.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "component-matrix",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{ "id": "primary.default", "label": "Primary default", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "variant=primary; size=medium; disabled=false" }, "classification": "already-represented", "frameNodeId": "348:7", "instanceNodeId": "348:8", "componentNodeId": "21:14" },
{ "id": "primary.hover", "label": "Primary hover", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "348:14", "instanceNodeId": "348:15", "componentNodeId": "21:14" },
{ "id": "primary.focus-visible", "label": "Primary focus visible", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "348:21", "instanceNodeId": "348:22", "componentNodeId": "21:14" },
{ "id": "primary.disabled", "label": "Primary disabled", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "348:28", "instanceNodeId": "348:29", "componentNodeId": "21:20" },
{ "id": "secondary.default", "label": "Secondary default", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "variant=secondary; size=medium; disabled=false" }, "classification": "already-represented", "frameNodeId": "348:38", "instanceNodeId": "348:39", "componentNodeId": "21:50" },
{ "id": "secondary.hover", "label": "Secondary hover", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "348:45", "instanceNodeId": "348:46", "componentNodeId": "21:50" },
{ "id": "secondary.focus-visible", "label": "Secondary focus visible", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "348:52", "instanceNodeId": "348:53", "componentNodeId": "21:50" },
{ "id": "secondary.disabled", "label": "Secondary disabled", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "348:59", "instanceNodeId": "348:60", "componentNodeId": "21:56" },
{ "id": "keyboard-activation", "label": "Keyboard activation", "target": "Button activation behavior", "source": { "trigger": "behavior", "value": "Enter and Space activation" }, "classification": "runtime-only", "reason": "Activation semantics require executable browser evidence and cannot be represented honestly in a static frame." },
{ "id": "motion-timing", "label": "Motion timing", "target": "Button color transition", "source": { "trigger": "behavior", "value": "semantic duration and reduced-motion collapse" }, "classification": "runtime-only", "reason": "Transition timing and reduced-motion behavior require runtime measurement." }
]
},
"properties": [
{ "name": "Label", "type": "TEXT" },
{ "name": "Variant", "type": "VARIANT", "values": ["Primary", "Secondary"] },
{ "name": "Size", "type": "VARIANT", "values": ["Large", "Medium", "Small"] },
{ "name": "Start icon", "type": "BOOLEAN" },
{ "name": "End icon", "type": "BOOLEAN" },
{ "name": "Disabled", "type": "VARIANT", "values": ["False", "True"] }
]
},
"mappings": [
{ "figmaProperty": "Label", "kind": "string", "codeProp": "children" },
{ "figmaProperty": "Variant", "kind": "enum", "codeProp": "variant", "values": ["Primary", "Secondary"] },
{ "figmaProperty": "Size", "kind": "enum", "codeProp": "size", "values": ["Large", "Medium", "Small"] },
{ "figmaProperty": "Start icon", "kind": "boolean", "codeProp": "startIcon" },
{ "figmaProperty": "End icon", "kind": "boolean", "codeProp": "endIcon" },
{ "figmaProperty": "Disabled", "kind": "enum", "codeProp": "disabled", "values": ["False", "True"] }
],
"nestedDependencies": []
},
{
"id": "button-light-icon-only",
"canonical": "Button",
"slug": "button",
"presentationLabel": "Icon only",
"exportName": "Button",
"publicImport": "@verndale/ui-design-library/components/button",
"componentPath": "components/button",
"storyPath": "components/button/Button.stories.tsx",
"storyParity": "exact",
"storyProps": ["children", "presentation", "variant", "size", "surface", "startIcon", "endIcon", "type", "disabled", "onClick", "aria-label", "className", "classNames"],
"codeOnlyProps": ["children", "startIcon", "endIcon", "type", "onClick", "aria-label", "className", "classNames"],
"fixedProps": [
{ "codeProp": "surface", "value": "light" },
{ "codeProp": "presentation", "value": "icon-only" }
],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "button",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/button",
"privateAuditDigest": "342ee614589966d4979626cfd97cbd12023e3f16766fc113be9ea5063cc34e08",
"decisionIds": ["sp-button-001", "sp-button-002"],
"representationDecisions": [
{
"decisionId": "sp-button-002",
"implementationKey": "button",
"surfaces": ["ai-registry", "code", "figma", "storybook"]
}
],
"requiredRepresentationSurfaces": ["ai-registry", "code", "figma", "storybook"],
"representations": [
{
"decisionId": "sp-button-002",
"kind": "component-property",
"masterNodeId": "307:2",
"publicProps": ["presentation"],
"specimens": []
}
]
},
"figma": {
"pageId": "11:5",
"pageName": "Button \u2014 Light",
"nodeId": "307:2",
"nodeKey": "3205974927fde36620489da7096785ae7fa4b851",
"nodeType": "COMPONENT_SET",
"nodeName": "Button / Icon only",
"status": "ready-for-dev",
"publicationStatus": "unpublished",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-20-button-source-parity.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "component-matrix",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{ "id": "primary.default", "label": "Primary default", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "variant=primary; presentation=icon-only; disabled=false" }, "classification": "already-represented", "frameNodeId": "348:69", "instanceNodeId": "348:70", "componentNodeId": "307:15" },
{ "id": "primary.hover", "label": "Primary hover", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "348:74", "instanceNodeId": "348:75", "componentNodeId": "307:15" },
{ "id": "primary.focus-visible", "label": "Primary focus visible", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "348:79", "instanceNodeId": "348:80", "componentNodeId": "307:15" },
{ "id": "primary.disabled", "label": "Primary disabled", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "348:84", "instanceNodeId": "348:85", "componentNodeId": "307:21" },
{ "id": "secondary.default", "label": "Secondary default", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "variant=secondary; presentation=icon-only; disabled=false" }, "classification": "already-represented", "frameNodeId": "348:92", "instanceNodeId": "348:93", "componentNodeId": "307:51" },
{ "id": "secondary.hover", "label": "Secondary hover", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "348:97", "instanceNodeId": "348:98", "componentNodeId": "307:51" },
{ "id": "secondary.focus-visible", "label": "Secondary focus visible", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "348:102", "instanceNodeId": "348:103", "componentNodeId": "307:51" },
{ "id": "secondary.disabled", "label": "Secondary disabled", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "348:107", "instanceNodeId": "348:108", "componentNodeId": "307:57" },
{ "id": "keyboard-activation", "label": "Keyboard activation", "target": "Icon-only button activation behavior", "source": { "trigger": "behavior", "value": "Enter and Space activation" }, "classification": "runtime-only", "reason": "Activation and accessible-name behavior require executable browser evidence." },
{ "id": "motion-timing", "label": "Motion timing", "target": "Button color transition", "source": { "trigger": "behavior", "value": "semantic duration and reduced-motion collapse" }, "classification": "runtime-only", "reason": "Transition timing and reduced-motion behavior require runtime measurement." }
]
},
"properties": [
{ "name": "Variant", "type": "VARIANT", "values": ["Primary", "Secondary"] },
{ "name": "Size", "type": "VARIANT", "values": ["Large", "Medium", "Small"] },
{ "name": "Disabled", "type": "VARIANT", "values": ["False", "True"] }
]
},
"mappings": [
{ "figmaProperty": "Variant", "kind": "enum", "codeProp": "variant", "values": ["Primary", "Secondary"] },
{ "figmaProperty": "Size", "kind": "enum", "codeProp": "size", "values": ["Large", "Medium", "Small"] },
{ "figmaProperty": "Disabled", "kind": "enum", "codeProp": "disabled", "values": ["False", "True"] }
],
"nestedDependencies": []
},
{
"id": "button-dark",
"canonical": "Button",
"slug": "button",
"exportName": "Button",
"publicImport": "@verndale/ui-design-library/components/button",
"componentPath": "components/button",
"storyPath": "components/button/Button.stories.tsx",
"storyParity": "exact",
"storyProps": ["children", "presentation", "variant", "size", "surface", "startIcon", "endIcon", "type", "disabled", "onClick", "aria-label", "className", "classNames"],
"codeOnlyProps": ["type", "onClick", "aria-label", "className", "classNames"],
"fixedProps": [
{ "codeProp": "surface", "value": "dark" },
{ "codeProp": "presentation", "value": "label" }
],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "button",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/button",
"privateAuditDigest": "342ee614589966d4979626cfd97cbd12023e3f16766fc113be9ea5063cc34e08",
"decisionIds": ["sp-button-001", "sp-button-002"],
"representationDecisions": [
{
"decisionId": "sp-button-002",
"implementationKey": "button",
"surfaces": ["ai-registry", "code", "figma", "storybook"]
}
],
"requiredRepresentationSurfaces": ["ai-registry", "code", "figma", "storybook"],
"representations": []
},
"figma": {
"pageId": "11:6",
"pageName": "Button \u2014 Dark",
"nodeId": "53:3",
"nodeKey": "8ea0f13b9093a07fee022d1c6f61aa758547f221",
"nodeType": "COMPONENT_SET",
"nodeName": "Button",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-20-button-source-parity.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "component-matrix",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{ "id": "primary.default", "label": "Primary default", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "surface=dark; variant=primary; disabled=false" }, "classification": "already-represented", "frameNodeId": "350:13", "instanceNodeId": "350:14", "componentNodeId": "53:16" },
{ "id": "primary.hover", "label": "Primary hover", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "350:20", "instanceNodeId": "350:21", "componentNodeId": "53:16" },
{ "id": "primary.focus-visible", "label": "Primary focus visible", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "350:27", "instanceNodeId": "350:28", "componentNodeId": "53:16" },
{ "id": "primary.disabled", "label": "Primary disabled", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "350:35", "instanceNodeId": "350:36", "componentNodeId": "53:22" },
{ "id": "secondary.default", "label": "Secondary default", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "surface=dark; variant=secondary; disabled=false" }, "classification": "already-represented", "frameNodeId": "350:45", "instanceNodeId": "350:46", "componentNodeId": "53:52" },
{ "id": "secondary.hover", "label": "Secondary hover", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "350:52", "instanceNodeId": "350:53", "componentNodeId": "53:52" },
{ "id": "secondary.focus-visible", "label": "Secondary focus visible", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "350:59", "instanceNodeId": "350:60", "componentNodeId": "53:52" },
{ "id": "secondary.disabled", "label": "Secondary disabled", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "350:67", "instanceNodeId": "350:68", "componentNodeId": "53:58" },
{ "id": "ghost.default", "label": "Ghost default", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "surface=dark; variant=ghost; disabled=false" }, "classification": "already-represented", "frameNodeId": "350:77", "instanceNodeId": "350:78", "componentNodeId": "54:14" },
{ "id": "ghost.hover", "label": "Ghost hover", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "350:84", "instanceNodeId": "350:85", "componentNodeId": "54:14" },
{ "id": "ghost.focus-visible", "label": "Ghost focus visible", "target": "Medium label button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "350:91", "instanceNodeId": "350:92", "componentNodeId": "54:14" },
{ "id": "ghost.disabled", "label": "Ghost disabled", "target": "Medium label button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "350:99", "instanceNodeId": "350:100", "componentNodeId": "54:20" },
{ "id": "keyboard-activation", "label": "Keyboard activation", "target": "Button activation behavior", "source": { "trigger": "behavior", "value": "Enter and Space activation" }, "classification": "runtime-only", "reason": "Activation semantics require executable browser evidence and cannot be represented honestly in a static frame." },
{ "id": "motion-timing", "label": "Motion timing", "target": "Button color transition", "source": { "trigger": "behavior", "value": "semantic duration and reduced-motion collapse" }, "classification": "runtime-only", "reason": "Transition timing and reduced-motion behavior require runtime measurement." }
]
},
"properties": [
{ "name": "Label", "type": "TEXT" },
{ "name": "Variant", "type": "VARIANT", "values": ["Primary", "Secondary", "Ghost"] },
{ "name": "Size", "type": "VARIANT", "values": ["Large", "Medium", "Small"] },
{ "name": "Start icon", "type": "BOOLEAN" },
{ "name": "End icon", "type": "BOOLEAN" },
{ "name": "Disabled", "type": "VARIANT", "values": ["False", "True"] }
]
},
"mappings": [
{ "figmaProperty": "Label", "kind": "string", "codeProp": "children" },
{ "figmaProperty": "Variant", "kind": "enum", "codeProp": "variant", "values": ["Primary", "Secondary", "Ghost"] },
{ "figmaProperty": "Size", "kind": "enum", "codeProp": "size", "values": ["Large", "Medium", "Small"] },
{ "figmaProperty": "Start icon", "kind": "boolean", "codeProp": "startIcon" },
{ "figmaProperty": "End icon", "kind": "boolean", "codeProp": "endIcon" },
{ "figmaProperty": "Disabled", "kind": "enum", "codeProp": "disabled", "values": ["False", "True"] }
],
"nestedDependencies": []
},
{
"id": "button-dark-icon-only",
"canonical": "Button",
"slug": "button",
"presentationLabel": "Icon only",
"exportName": "Button",
"publicImport": "@verndale/ui-design-library/components/button",
"componentPath": "components/button",
"storyPath": "components/button/Button.stories.tsx",
"storyParity": "exact",
"storyProps": ["children", "presentation", "variant", "size", "surface", "startIcon", "endIcon", "type", "disabled", "onClick", "aria-label", "className", "classNames"],
"codeOnlyProps": ["children", "startIcon", "endIcon", "type", "onClick", "aria-label", "className", "classNames"],
"fixedProps": [
{ "codeProp": "surface", "value": "dark" },
{ "codeProp": "presentation", "value": "icon-only" }
],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "button",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/button",
"privateAuditDigest": "342ee614589966d4979626cfd97cbd12023e3f16766fc113be9ea5063cc34e08",
"decisionIds": ["sp-button-001", "sp-button-002"],
"representationDecisions": [
{
"decisionId": "sp-button-002",
"implementationKey": "button",
"surfaces": ["ai-registry", "code", "figma", "storybook"]
}
],
"requiredRepresentationSurfaces": ["ai-registry", "code", "figma", "storybook"],
"representations": []
},
"figma": {
"pageId": "11:6",
"pageName": "Button \u2014 Dark",
"nodeId": "308:2",
"nodeKey": "a2d7887b9dbe3f976de9d55124b11d965d263208",
"nodeType": "COMPONENT_SET",
"nodeName": "Button / Icon only",
"status": "ready-for-dev",
"publicationStatus": "unpublished",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-20-button-source-parity.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "component-matrix",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{ "id": "primary.default", "label": "Primary default", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "surface=dark; variant=primary; disabled=false" }, "classification": "already-represented", "frameNodeId": "350:109", "instanceNodeId": "350:110", "componentNodeId": "308:15" },
{ "id": "primary.hover", "label": "Primary hover", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "350:114", "instanceNodeId": "350:115", "componentNodeId": "308:15" },
{ "id": "primary.focus-visible", "label": "Primary focus visible", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "350:119", "instanceNodeId": "350:120", "componentNodeId": "308:15" },
{ "id": "primary.disabled", "label": "Primary disabled", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "350:125", "instanceNodeId": "350:126", "componentNodeId": "308:21" },
{ "id": "secondary.default", "label": "Secondary default", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "surface=dark; variant=secondary; disabled=false" }, "classification": "already-represented", "frameNodeId": "350:133", "instanceNodeId": "350:134", "componentNodeId": "308:51" },
{ "id": "secondary.hover", "label": "Secondary hover", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "350:138", "instanceNodeId": "350:139", "componentNodeId": "308:51" },
{ "id": "secondary.focus-visible", "label": "Secondary focus visible", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "350:143", "instanceNodeId": "350:144", "componentNodeId": "308:51" },
{ "id": "secondary.disabled", "label": "Secondary disabled", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "350:149", "instanceNodeId": "350:150", "componentNodeId": "308:57" },
{ "id": "ghost.default", "label": "Ghost default", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "surface=dark; variant=ghost; disabled=false" }, "classification": "already-represented", "frameNodeId": "350:157", "instanceNodeId": "350:158", "componentNodeId": "308:87" },
{ "id": "ghost.hover", "label": "Ghost hover", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":hover" }, "classification": "rendered", "frameNodeId": "350:162", "instanceNodeId": "350:163", "componentNodeId": "308:87" },
{ "id": "ghost.focus-visible", "label": "Ghost focus visible", "target": "Medium icon-only button", "source": { "trigger": "pseudo", "value": ":focus-visible" }, "classification": "rendered", "frameNodeId": "350:167", "instanceNodeId": "350:168", "componentNodeId": "308:87" },
{ "id": "ghost.disabled", "label": "Ghost disabled", "target": "Medium icon-only button", "source": { "trigger": "public-prop", "value": "disabled=true" }, "classification": "already-represented", "frameNodeId": "350:173", "instanceNodeId": "350:174", "componentNodeId": "308:93" },
{ "id": "keyboard-activation", "label": "Keyboard activation", "target": "Icon-only button activation behavior", "source": { "trigger": "behavior", "value": "Enter and Space activation" }, "classification": "runtime-only", "reason": "Activation and accessible-name behavior require executable browser evidence." },
{ "id": "motion-timing", "label": "Motion timing", "target": "Button color transition", "source": { "trigger": "behavior", "value": "semantic duration and reduced-motion collapse" }, "classification": "runtime-only", "reason": "Transition timing and reduced-motion behavior require runtime measurement." }
]
},
"properties": [
{ "name": "Variant", "type": "VARIANT", "values": ["Primary", "Secondary", "Ghost"] },
{ "name": "Size", "type": "VARIANT", "values": ["Large", "Medium", "Small"] },
{ "name": "Disabled", "type": "VARIANT", "values": ["False", "True"] }
]
},
"mappings": [
{ "figmaProperty": "Variant", "kind": "enum", "codeProp": "variant", "values": ["Primary", "Secondary", "Ghost"] },
{ "figmaProperty": "Size", "kind": "enum", "codeProp": "size", "values": ["Large", "Medium", "Small"] },
{ "figmaProperty": "Disabled", "kind": "enum", "codeProp": "disabled", "values": ["False", "True"] }
],
"nestedDependencies": []
},
{
"id": "section-header",
"canonical": "Section header",
"slug": "section-header",
"exportName": "SectionHeader",
"publicImport": "@verndale/ui-design-library/components/section-header",
"componentPath": "components/section-header",
"storyPath": "components/section-header/SectionHeader.stories.tsx",
"storyParity": "exact",
"storyProps": ["eyebrow", "heading", "description", "alignment", "headingLevel", "as", "className", "classNames"],
"codeOnlyProps": ["headingLevel", "as", "className", "classNames"],
"fixedProps": [],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "section-header",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/section-header",
"privateAuditDigest": "f2931ae34832019957057cd399b9b581257dd65350a4050d26ecbbf8c0b52be4",
"decisionIds": [
"sp-section-header-001",
"sp-section-header-002"
],
"representationDecisions": [],
"requiredRepresentationSurfaces": [],
"representations": []
},
"figma": {
"pageId": "11:7",
"pageName": "Section header",
"nodeId": "64:99",
"nodeKey": "4124310a7b01bcdc48911f3133571d314b472cc0",
"nodeType": "COMPONENT_SET",
"nodeName": "Section header",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-19-source-parity-governance-foundation.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "responsive-specimens",
"stateCoverage": {
"status": "not-applicable",
"reason": "The component owns static section-introduction content and no interaction behavior or pseudo-state styling.",
"states": []
},
"properties": [
{ "name": "Heading", "type": "TEXT" },
{ "name": "Eyebrow", "type": "TEXT" },
{ "name": "Show eyebrow", "type": "BOOLEAN" },
{ "name": "Description", "type": "TEXT" },
{ "name": "Show description", "type": "BOOLEAN" },
{ "name": "Alignment", "type": "VARIANT", "values": ["Left", "Center"] }
]
},
"mappings": [
{ "figmaProperty": "Heading", "kind": "string", "codeProp": "heading" },
{ "figmaProperty": "Eyebrow", "kind": "string", "codeProp": "eyebrow" },
{ "figmaProperty": "Show eyebrow", "kind": "boolean", "codeProp": "eyebrow", "role": "condition" },
{ "figmaProperty": "Description", "kind": "string", "codeProp": "description" },
{ "figmaProperty": "Show description", "kind": "boolean", "codeProp": "description", "role": "condition" },
{ "figmaProperty": "Alignment", "kind": "enum", "codeProp": "alignment", "values": ["Left", "Center"] }
],
"nestedDependencies": []
},
{
"id": "alert",
"canonical": "Alert",
"slug": "alert",
"exportName": "Alert",
"publicImport": "@verndale/ui-design-library/components/alert",
"componentPath": "components/alert",
"storyPath": "components/alert/Alert.stories.tsx",
"storyParity": "exact",
"storyProps": ["children", "variant", "open", "icon", "showAccent", "onDismiss", "dismissLabel", "dismissMs", "className", "classNames"],
"codeOnlyProps": ["open", "dismissLabel", "dismissMs", "className", "classNames"],
"fixedProps": [],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "alert",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/alert",
"privateAuditDigest": "2956e5f44f078e5a94fcc1d4896d101895d1e342e58396fd941dcc907875b3a0",
"decisionIds": [
"sp-alert-001",
"sp-alert-002"
],
"representationDecisions": [],
"requiredRepresentationSurfaces": [],
"representations": []
},
"figma": {
"pageId": "11:8",
"pageName": "Alert",
"nodeId": "66:112",
"nodeKey": "1483c1c322fc7e63e0329b8888822521cf8eecc2",
"nodeType": "COMPONENT_SET",
"nodeName": "Alert",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-19-source-parity-governance-foundation.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "responsive-specimens",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{
"id": "positive",
"label": "Positive",
"target": "Alert frame and positive tone",
"source": { "trigger": "public-prop", "value": "variant=positive, open=true, onDismiss omitted" },
"classification": "already-represented",
"frameNodeId": "375:109",
"instanceNodeId": "375:129",
"componentNodeId": "66:89"
},
{
"id": "critical",
"label": "Critical",
"target": "Alert frame and critical tone",
"source": { "trigger": "public-prop", "value": "variant=critical, open=true, onDismiss omitted" },
"classification": "already-represented",
"frameNodeId": "375:143",
"instanceNodeId": "375:163",
"componentNodeId": "66:99"
},
{
"id": "dismiss-default",
"label": "Dismiss default",
"target": "Dismiss control",
"source": { "trigger": "public-prop", "value": "onDismiss is present" },
"classification": "already-represented",
"frameNodeId": "375:178",
"instanceNodeId": "375:198",
"componentNodeId": "66:89"
},
{
"id": "dismiss-hover",
"label": "Dismiss hover",
"target": "Dismiss control",
"source": { "trigger": "pseudo", "value": "dismiss button:hover" },
"classification": "rendered",
"frameNodeId": "375:214",
"instanceNodeId": "375:234",
"componentNodeId": "66:89"
},
{
"id": "dismiss-focus-visible",
"label": "Dismiss focus visible",
"target": "Dismiss control",
"source": { "trigger": "pseudo", "value": "dismiss button:focus-visible" },
"classification": "rendered",
"frameNodeId": "375:250",
"instanceNodeId": "375:270",
"componentNodeId": "66:89"
},
{
"id": "dismissal-activation",
"label": "Dismissal activation",
"target": "Alert and dismiss control",
"source": { "trigger": "behavior", "value": "alert.dismiss.keyboard" },
"classification": "runtime-only",
"reason": "Keyboard activation and removal from the live DOM require executable evidence."
},
{
"id": "auto-dismiss-timer",
"label": "Auto-dismiss timer",
"target": "Alert lifetime",
"source": { "trigger": "behavior", "value": "dismissMs greater than zero" },
"classification": "runtime-only",
"reason": "Elapsed-time dismissal cannot be represented by a static frame."
},
{
"id": "timing-opt-out",
"label": "Persistent timing opt-out",
"target": "Alert lifetime",
"source": { "trigger": "behavior", "value": "alert.timing.opt-out" },
"classification": "runtime-only",
"reason": "Persistence over time requires executable timer evidence."
},
{
"id": "announcement-priority",
"label": "Announcement priority",
"target": "Alert live region",
"source": { "trigger": "behavior", "value": "alert.announcement.priority" },
"classification": "runtime-only",
"reason": "Polite versus assertive live-region behavior requires DOM and assistive-technology evidence."
},
{
"id": "dismiss-motion",
"label": "Dismiss motion",
"target": "Dismiss control transition",
"source": { "trigger": "behavior", "value": "alert.dismiss.motion" },
"classification": "runtime-only",
"reason": "Transition duration and reduced-motion collapse require executable media-query evidence."
}
]
},
"properties": [
{ "name": "Message", "type": "TEXT" },
{ "name": "Variant", "type": "VARIANT", "values": ["Positive", "Critical"] },
{ "name": "Show accent", "type": "BOOLEAN" },
{ "name": "Show icon", "type": "BOOLEAN" },
{ "name": "Dismissible", "type": "BOOLEAN" }
]
},
"mappings": [
{ "figmaProperty": "Message", "kind": "string", "codeProp": "children" },
{ "figmaProperty": "Variant", "kind": "enum", "codeProp": "variant", "values": ["Positive", "Critical"] },
{ "figmaProperty": "Show accent", "kind": "boolean", "codeProp": "showAccent" },
{ "figmaProperty": "Show icon", "kind": "boolean", "codeProp": "icon" },
{ "figmaProperty": "Dismissible", "kind": "boolean", "codeProp": "onDismiss" }
],
"nestedDependencies": []
},
{
"id": "card",
"canonical": "Card",
"slug": "card",
"exportName": "Card",
"publicImport": "@verndale/ui-design-library/components/card",
"componentPath": "components/card",
"storyPath": "components/card/Card.stories.tsx",
"storyParity": "exact",
"storyProps": ["children", "unsetBackground", "as", "ariaLabel", "ariaLabelledBy", "className", "classNames"],
"codeOnlyProps": ["as", "ariaLabel", "ariaLabelledBy", "className", "classNames"],
"fixedProps": [],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "card",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/card",
"privateAuditDigest": "9b9123adeef6dc98341a03651dc5aa29318ab4a5c62b74b15074e960ad91d13f",
"decisionIds": [
"sp-card-001",
"sp-card-002"
],
"representationDecisions": [],
"requiredRepresentationSurfaces": [],
"representations": []
},
"figma": {
"pageId": "11:9",
"pageName": "Card",
"nodeId": "71:104",
"nodeKey": "a8a7b1892ede65a10e9f9322428e3965f69b5b16",
"nodeType": "COMPONENT_SET",
"nodeName": "Card",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-19-source-parity-governance-foundation.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "responsive-specimens",
"stateCoverage": {
"status": "not-applicable",
"reason": "The Card container owns structure and surface only; its as prop does not add interaction styling. CardMedia owns the family interaction behavior separately.",
"states": []
},
"properties": [
{ "name": "Content", "type": "SLOT" },
{ "name": "Surface", "type": "VARIANT", "values": ["Raised", "Unset"] }
]
},
"mappings": [
{ "figmaProperty": "Content", "kind": "slot", "codeProp": "children" },
{ "figmaProperty": "Surface", "kind": "enum", "codeProp": "unsetBackground", "values": ["Raised", "Unset"] }
],
"nestedDependencies": ["card-media"]
},
{
"id": "card-media",
"canonical": "CardMedia",
"manifestCanonical": "Card",
"secondaryExport": true,
"slug": "card",
"exportName": "CardMedia",
"publicImport": "@verndale/ui-design-library/components/card",
"componentPath": "components/card",
"storyPath": "components/card/Card.stories.tsx",
"storyParity": "subset",
"storyProps": ["children", "className"],
"codeOnlyProps": ["className"],
"fixedProps": [],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "card",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/card",
"privateAuditDigest": "9b9123adeef6dc98341a03651dc5aa29318ab4a5c62b74b15074e960ad91d13f",
"decisionIds": [
"sp-card-001",
"sp-card-002"
],
"representationDecisions": [],
"requiredRepresentationSurfaces": [],
"representations": []
},
"figma": {
"pageId": "11:10",
"pageName": "CardMedia",
"nodeId": "69:90",
"nodeKey": "d53c2f5e99b6d0be47b4205fb56d45f6fbdb0ed2",
"nodeType": "COMPONENT",
"nodeName": "CardMedia",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-19-source-parity-governance-foundation.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "responsive-specimens",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{
"id": "rest",
"label": "Rest",
"target": "CardMedia child",
"source": { "trigger": "derived-state", "value": "group is neither hovered nor focus-visible" },
"classification": "already-represented",
"frameNodeId": "379:49",
"instanceNodeId": "379:69",
"componentNodeId": "69:90"
},
{
"id": "group-hover",
"label": "Group hover",
"target": "CardMedia child",
"source": { "trigger": "pseudo", "value": "group:hover" },
"classification": "rendered",
"frameNodeId": "379:75",
"instanceNodeId": "379:95",
"componentNodeId": "69:90"
},
{
"id": "group-focus-visible",
"label": "Group focus visible",
"target": "CardMedia child",
"source": { "trigger": "pseudo", "value": "group:focus-visible" },
"classification": "rendered",
"frameNodeId": "379:105",
"instanceNodeId": "379:125",
"componentNodeId": "69:90"
},
{
"id": "reduced-motion",
"label": "Reduced motion",
"target": "CardMedia transform transition",
"source": { "trigger": "behavior", "value": "card-media.motion.reduced" },
"classification": "runtime-only",
"reason": "The scale suppression and transition-duration collapse require executable media-query evidence."
}
]
},
"properties": [{ "name": "Media", "type": "SLOT" }]
},
"mappings": [{ "figmaProperty": "Media", "kind": "slot", "codeProp": "children" }],
"nestedDependencies": []
},
{
"id": "modal",
"canonical": "Modal",
"slug": "modal",
"exportName": "Modal",
"publicImport": "@verndale/ui-design-library/components/modal",
"componentPath": "components/modal",
"storyPath": "components/modal/Modal.stories.tsx",
"storyParity": "exact",
"storyProps": [
"open",
"onClose",
"title",
"closeLabel",
"eyebrow",
"description",
"children",
"footer",
"size",
"returnFocusRef",
"id",
"titleHeadingLevel",
"closeIcon",
"className",
"classNames"
],
"codeOnlyProps": ["open", "onClose", "closeLabel", "returnFocusRef", "id", "titleHeadingLevel", "closeIcon", "className", "classNames"],
"fixedProps": [],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "modal",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/modal",
"privateAuditDigest": "8545b0c4df7347af48877b89593474f1911e63527bd015487a5e01aa81c64cba",
"decisionIds": [
"sp-modal-001",
"sp-modal-002"
],
"representationDecisions": [],
"requiredRepresentationSurfaces": [],
"representations": []
},
"figma": {
"pageId": "11:11",
"pageName": "Modal",
"nodeId": "75:129",
"nodeKey": "19603430c929e9035c8bdab786742349a353fb15",
"nodeType": "COMPONENT_SET",
"nodeName": "Modal",
"status": "ready-for-dev",
"publicationStatus": "published",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-19-source-parity-governance-foundation.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "responsive-full-viewport",
"stateCoverage": {
"status": "covered",
"storyExport": "InteractionStates",
"states": [
{ "id": "open-medium", "label": "Open medium", "target": "Modal panel", "source": { "trigger": "public-prop", "value": "open=true; size=medium" }, "classification": "already-represented", "frameNodeId": "394:12", "instanceNodeId": "394:301", "componentNodeId": "75:89" },
{ "id": "open-large", "label": "Open large", "target": "Modal panel", "source": { "trigger": "public-prop", "value": "open=true; size=large" }, "classification": "already-represented", "frameNodeId": "394:16", "instanceNodeId": "394:325", "componentNodeId": "75:114" },
{ "id": "close-default", "label": "Close default", "target": "Close dialog button", "source": { "trigger": "public-prop", "value": "open=true; closeLabel=Close dialog" }, "classification": "already-represented", "frameNodeId": "394:26", "instanceNodeId": "394:349", "componentNodeId": "75:89" },
{ "id": "close-hover", "label": "Close hover", "target": "Close dialog button", "source": { "trigger": "pseudo", "value": "button:hover" }, "classification": "rendered", "frameNodeId": "394:30", "instanceNodeId": "394:373", "componentNodeId": "75:89" },
{ "id": "close-focus-visible", "label": "Close focus visible", "target": "Close dialog button", "source": { "trigger": "pseudo", "value": "button:focus-visible" }, "classification": "rendered", "frameNodeId": "394:294", "instanceNodeId": "394:414", "componentNodeId": "75:89" },
{ "id": "closed-unmounted", "label": "Closed and unmounted", "target": "Modal portal", "source": { "trigger": "behavior", "value": "open=false" }, "classification": "runtime-only", "reason": "The absence of the portal and dialog requires executable DOM evidence." },
{ "id": "focus-containment", "label": "Focus containment", "target": "Modal dialog", "source": { "trigger": "behavior", "value": "modal.focus.containment" }, "classification": "runtime-only", "reason": "Tab and Shift+Tab sequencing must be exercised in a browser." },
{ "id": "focus-restoration", "label": "Focus restoration", "target": "Trigger or returnFocusRef", "source": { "trigger": "behavior", "value": "modal.focus.restoration" }, "classification": "runtime-only", "reason": "Focus restoration is observable only after the modal closes." },
{ "id": "keyboard-escape", "label": "Escape dismissal", "target": "Topmost modal", "source": { "trigger": "behavior", "value": "modal.keyboard.escape" }, "classification": "runtime-only", "reason": "Keyboard dismissal and the resulting focus transition require executable evidence." },
{ "id": "background-inert", "label": "Background inertness", "target": "Page behind the modal", "source": { "trigger": "behavior", "value": "modal.background.inert" }, "classification": "runtime-only", "reason": "Inert background behavior and redirected focus cannot be represented by a static frame." },
{ "id": "semantic-relationships", "label": "Dialog semantic relationships", "target": "Modal dialog", "source": { "trigger": "behavior", "value": "modal.semantics.relationships" }, "classification": "runtime-only", "reason": "Resolved aria-labelledby and aria-describedby relationships require DOM inspection." },
{ "id": "backdrop-dismissal", "label": "Backdrop dismissal", "target": "Modal scrim", "source": { "trigger": "behavior", "value": "backdrop click closes; panel click is ignored" }, "classification": "runtime-only", "reason": "The guarded event-target behavior requires pointer interaction." },
{ "id": "stacked-overlays", "label": "Stacked overlay ownership", "target": "Topmost modal", "source": { "trigger": "behavior", "value": "topmost overlay owns semantics, focus, Escape, and scroll lock" }, "classification": "runtime-only", "reason": "Overlay-stack ownership changes across a multi-step dismissal sequence." },
{ "id": "close-motion", "label": "Entrance and close-control motion", "target": "Modal panel and close button", "source": { "trigger": "behavior", "value": "modal.close.motion" }, "classification": "runtime-only", "reason": "Animation and transition durations, including reduced-motion collapse, require runtime measurement." }
]
},
"properties": [
{ "name": "Title", "type": "TEXT" },
{ "name": "Eyebrow", "type": "TEXT" },
{ "name": "Show eyebrow", "type": "BOOLEAN" },
{ "name": "Description", "type": "TEXT" },
{ "name": "Show description", "type": "BOOLEAN" },
{ "name": "Body", "type": "SLOT" },
{ "name": "Footer", "type": "SLOT" },
{ "name": "Size", "type": "VARIANT", "values": ["Medium", "Large"] }
]
},
"mappings": [
{ "figmaProperty": "Title", "kind": "string", "codeProp": "title" },
{ "figmaProperty": "Eyebrow", "kind": "string", "codeProp": "eyebrow" },
{ "figmaProperty": "Show eyebrow", "kind": "boolean", "codeProp": "eyebrow", "role": "condition" },
{ "figmaProperty": "Description", "kind": "string", "codeProp": "description" },
{ "figmaProperty": "Show description", "kind": "boolean", "codeProp": "description", "role": "condition" },
{ "figmaProperty": "Body", "kind": "slot", "codeProp": "children" },
{ "figmaProperty": "Footer", "kind": "slot", "codeProp": "footer" },
{ "figmaProperty": "Size", "kind": "enum", "codeProp": "size", "values": ["Medium", "Large"] }
],
"nestedDependencies": ["button-light"]
},
{
"id": "avatar",
"canonical": "Avatar",
"slug": "avatar",
"exportName": "Avatar",
"publicImport": "@verndale/ui-design-library/components/avatar",
"componentPath": "components/avatar",
"storyPath": "components/avatar/Avatar.stories.tsx",
"storyParity": "exact",
"storyProps": ["children", "id", "ariaLabel", "className", "classNames"],
"codeOnlyProps": ["id", "ariaLabel", "className", "classNames"],
"fixedProps": [],
"sourceParity": {
"contractVersion": 1,
"auditComponentKey": "avatar",
"auditStatus": "cleared",
"privateAuditRef": "library-source-parity:2026-08-19/components/avatar",
"privateAuditDigest": "15fd1aa4df85c5adc53207ede5bf16b49660eb61b5210622bfe5719530d59d92",
"decisionIds": [
"sp-avatar-001",
"sp-avatar-002"
],
"representationDecisions": [],
"requiredRepresentationSurfaces": [],
"representations": []
},
"figma": {
"pageId": "164:3",
"pageName": "Avatar",
"nodeId": "164:45",
"nodeKey": "f3a8b8b211307dd18e28e6da18ff801a92aa7cb5",
"nodeType": "COMPONENT",
"nodeName": "Avatar",
"status": "ready-for-dev",
"publicationStatus": "unpublished",
"review": {
"status": "passed",
"standard": "button-standard-v1",
"passes": ["source-parity", "adversarial", "design"],
"evidence": "wiki/journal/2026-08-19-source-parity-governance-foundation.md"
},
"handoffPattern": "direct-canonical-instance",
"presentationPattern": "component-matrix",
"stateCoverage": {
"status": "not-applicable",
"reason": "The portrait frame owns no interaction behavior or pseudo-state styling.",