@flowstack-ui/brick 0.1.11 → 0.1.12

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 (129) hide show
  1. package/README.md +1 -1
  2. package/dist/agents/blockquote.json +68 -0
  3. package/dist/agents/blockquote.md +42 -0
  4. package/dist/agents/code-block.json +20 -4
  5. package/dist/agents/code-block.md +9 -4
  6. package/dist/agents/coverage.json +1211 -199
  7. package/dist/agents/em.json +57 -0
  8. package/dist/agents/em.md +39 -0
  9. package/dist/agents/highlight.json +73 -0
  10. package/dist/agents/highlight.md +43 -0
  11. package/dist/agents/interface-composition.json +14 -7
  12. package/dist/agents/interface-composition.md +5 -2
  13. package/dist/agents/kbd.json +62 -0
  14. package/dist/agents/kbd.md +40 -0
  15. package/dist/agents/layer-selection.json +125 -5
  16. package/dist/agents/layer-selection.md +12 -2
  17. package/dist/agents/manifest.json +37 -1
  18. package/dist/agents/mark.json +56 -0
  19. package/dist/agents/mark.md +38 -0
  20. package/dist/agents/prose.json +82 -0
  21. package/dist/agents/prose.md +50 -0
  22. package/dist/blockquote.d.ts +2 -0
  23. package/dist/blockquote.d.ts.map +1 -0
  24. package/dist/blockquote.js +2 -0
  25. package/dist/blockquote.js.map +1 -0
  26. package/dist/components/blockquote/Blockquote.d.ts +33 -0
  27. package/dist/components/blockquote/Blockquote.d.ts.map +1 -0
  28. package/dist/components/blockquote/Blockquote.js +36 -0
  29. package/dist/components/blockquote/Blockquote.js.map +1 -0
  30. package/dist/components/blockquote/index.d.ts +2 -0
  31. package/dist/components/blockquote/index.d.ts.map +1 -0
  32. package/dist/components/blockquote/index.js +2 -0
  33. package/dist/components/blockquote/index.js.map +1 -0
  34. package/dist/components/code-block/CodeBlock.d.ts +33 -0
  35. package/dist/components/code-block/CodeBlock.d.ts.map +1 -1
  36. package/dist/components/code-block/CodeBlock.js +60 -6
  37. package/dist/components/code-block/CodeBlock.js.map +1 -1
  38. package/dist/components/code-block/context.d.ts +2 -0
  39. package/dist/components/code-block/context.d.ts.map +1 -1
  40. package/dist/components/code-block/context.js.map +1 -1
  41. package/dist/components/code-block/index.d.ts +1 -1
  42. package/dist/components/code-block/index.d.ts.map +1 -1
  43. package/dist/components/code-block/index.js +1 -1
  44. package/dist/components/code-block/index.js.map +1 -1
  45. package/dist/components/em/Em.d.ts +9 -0
  46. package/dist/components/em/Em.d.ts.map +1 -0
  47. package/dist/components/em/Em.js +10 -0
  48. package/dist/components/em/Em.js.map +1 -0
  49. package/dist/components/em/index.d.ts +2 -0
  50. package/dist/components/em/index.d.ts.map +1 -0
  51. package/dist/components/em/index.js +2 -0
  52. package/dist/components/em/index.js.map +1 -0
  53. package/dist/components/highlight/Highlight.d.ts +9 -0
  54. package/dist/components/highlight/Highlight.d.ts.map +1 -0
  55. package/dist/components/highlight/Highlight.js +10 -0
  56. package/dist/components/highlight/Highlight.js.map +1 -0
  57. package/dist/components/highlight/index.d.ts +2 -0
  58. package/dist/components/highlight/index.d.ts.map +1 -0
  59. package/dist/components/highlight/index.js +2 -0
  60. package/dist/components/highlight/index.js.map +1 -0
  61. package/dist/components/kbd/Kbd.d.ts +13 -0
  62. package/dist/components/kbd/Kbd.d.ts.map +1 -0
  63. package/dist/components/kbd/Kbd.js +8 -0
  64. package/dist/components/kbd/Kbd.js.map +1 -0
  65. package/dist/components/kbd/index.d.ts +2 -0
  66. package/dist/components/kbd/index.d.ts.map +1 -0
  67. package/dist/components/kbd/index.js +2 -0
  68. package/dist/components/kbd/index.js.map +1 -0
  69. package/dist/components/mark/Mark.d.ts +13 -0
  70. package/dist/components/mark/Mark.d.ts.map +1 -0
  71. package/dist/components/mark/Mark.js +8 -0
  72. package/dist/components/mark/Mark.js.map +1 -0
  73. package/dist/components/mark/index.d.ts +2 -0
  74. package/dist/components/mark/index.d.ts.map +1 -0
  75. package/dist/components/mark/index.js +2 -0
  76. package/dist/components/mark/index.js.map +1 -0
  77. package/dist/components/prose/Prose.d.ts +12 -0
  78. package/dist/components/prose/Prose.d.ts.map +1 -0
  79. package/dist/components/prose/Prose.js +19 -0
  80. package/dist/components/prose/Prose.js.map +1 -0
  81. package/dist/components/prose/index.d.ts +2 -0
  82. package/dist/components/prose/index.d.ts.map +1 -0
  83. package/dist/components/prose/index.js +2 -0
  84. package/dist/components/prose/index.js.map +1 -0
  85. package/dist/em.d.ts +2 -0
  86. package/dist/em.d.ts.map +1 -0
  87. package/dist/em.js +2 -0
  88. package/dist/em.js.map +1 -0
  89. package/dist/highlight.d.ts +2 -0
  90. package/dist/highlight.d.ts.map +1 -0
  91. package/dist/highlight.js +2 -0
  92. package/dist/highlight.js.map +1 -0
  93. package/dist/index.d.ts +7 -1
  94. package/dist/index.d.ts.map +1 -1
  95. package/dist/index.js +7 -1
  96. package/dist/index.js.map +1 -1
  97. package/dist/kbd.d.ts +2 -0
  98. package/dist/kbd.d.ts.map +1 -0
  99. package/dist/kbd.js +2 -0
  100. package/dist/kbd.js.map +1 -0
  101. package/dist/mark.d.ts +2 -0
  102. package/dist/mark.d.ts.map +1 -0
  103. package/dist/mark.js +2 -0
  104. package/dist/mark.js.map +1 -0
  105. package/dist/prose.d.ts +2 -0
  106. package/dist/prose.d.ts.map +1 -0
  107. package/dist/prose.js +2 -0
  108. package/dist/prose.js.map +1 -0
  109. package/dist/styles/blockquote.css +2 -0
  110. package/dist/styles/blockquote.css.map +1 -0
  111. package/dist/styles/code-block.css +1 -1
  112. package/dist/styles/code-block.css.map +1 -1
  113. package/dist/styles/dropdown-menu.css.map +1 -1
  114. package/dist/styles/em.css +2 -0
  115. package/dist/styles/em.css.map +1 -0
  116. package/dist/styles/highlight.css +2 -0
  117. package/dist/styles/highlight.css.map +1 -0
  118. package/dist/styles/kbd.css +2 -0
  119. package/dist/styles/kbd.css.map +1 -0
  120. package/dist/styles/mark.css +2 -0
  121. package/dist/styles/mark.css.map +1 -0
  122. package/dist/styles/menubar.css.map +1 -1
  123. package/dist/styles/prose.css +2 -0
  124. package/dist/styles/prose.css.map +1 -0
  125. package/dist/styles/slider.css.map +1 -1
  126. package/dist/styles.css +1 -1
  127. package/dist/styles.css.map +1 -1
  128. package/dist/theme-contract.json +1418 -100
  129. package/package.json +36 -3
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schema": "flowstack.agent-coverage.v1",
3
3
  "package": "@flowstack-ui/brick",
4
- "packageVersion": "0.1.11",
4
+ "packageVersion": "0.1.12",
5
5
  "layer": "brick",
6
6
  "generatedFrom": {
7
7
  "exports": "package.json",
@@ -11,10 +11,10 @@
11
11
  "manifest": "dist/agents/manifest.json"
12
12
  },
13
13
  "summary": {
14
- "publicSurfaces": 2594,
15
- "classifiedPublicSurfaces": 2594,
16
- "componentOwners": 89,
17
- "guidedComponentOwners": 89,
14
+ "publicSurfaces": 2690,
15
+ "classifiedPublicSurfaces": 2690,
16
+ "componentOwners": 95,
17
+ "guidedComponentOwners": 95,
18
18
  "packageGuides": 2,
19
19
  "unclassified": 0,
20
20
  "invalidExclusions": 0,
@@ -309,6 +309,47 @@
309
309
  ],
310
310
  "status": "covered"
311
311
  },
312
+ {
313
+ "id": "blockquote",
314
+ "name": "Blockquote",
315
+ "publicSubpaths": [
316
+ "./blockquote"
317
+ ],
318
+ "publicSymbols": [
319
+ "Blockquote",
320
+ "BlockquoteAlign",
321
+ "BlockquoteCaption",
322
+ "BlockquoteCaptionProps",
323
+ "BlockquoteCite",
324
+ "BlockquoteCiteProps",
325
+ "BlockquoteContent",
326
+ "BlockquoteContentProps",
327
+ "BlockquoteIcon",
328
+ "BlockquoteIconProps",
329
+ "BlockquoteRoot",
330
+ "BlockquoteRootProps",
331
+ "BlockquoteVariant"
332
+ ],
333
+ "sourceOwner": "src/components/blockquote",
334
+ "documentationOwner": "docs/components/blockquote/README.md",
335
+ "agentSources": {
336
+ "json": "src/components/blockquote/agent.json",
337
+ "markdown": "src/components/blockquote/agent.md"
338
+ },
339
+ "manifestPaths": {
340
+ "json": "./blockquote.json",
341
+ "markdown": "./blockquote.md"
342
+ },
343
+ "publicValueSymbols": [
344
+ "Blockquote",
345
+ "BlockquoteCaption",
346
+ "BlockquoteCite",
347
+ "BlockquoteContent",
348
+ "BlockquoteIcon",
349
+ "BlockquoteRoot"
350
+ ],
351
+ "status": "covered"
352
+ },
312
353
  {
313
354
  "id": "bottom-navigation",
314
355
  "name": "BottomNavigation",
@@ -668,6 +709,16 @@
668
709
  "CodeBlock",
669
710
  "CodeBlockActions",
670
711
  "CodeBlockActionsProps",
712
+ "CodeBlockAdapter",
713
+ "CodeBlockAdapterContext",
714
+ "CodeBlockCollapse",
715
+ "CodeBlockCollapseContent",
716
+ "CodeBlockCollapseContentProps",
717
+ "CodeBlockCollapsePreview",
718
+ "CodeBlockCollapsePreviewProps",
719
+ "CodeBlockCollapseProps",
720
+ "CodeBlockCollapseTrigger",
721
+ "CodeBlockCollapseTriggerProps",
671
722
  "CodeBlockContent",
672
723
  "CodeBlockContentProps",
673
724
  "CodeBlockCopyIndicator",
@@ -680,6 +731,9 @@
680
731
  "CodeBlockHeaderProps",
681
732
  "CodeBlockLanguage",
682
733
  "CodeBlockLanguageProps",
734
+ "CodeBlockLine",
735
+ "CodeBlockLineChange",
736
+ "CodeBlockLineProps",
683
737
  "CodeBlockRoot",
684
738
  "CodeBlockRootProps",
685
739
  "CodeBlockSize",
@@ -701,12 +755,17 @@
701
755
  "publicValueSymbols": [
702
756
  "CodeBlock",
703
757
  "CodeBlockActions",
758
+ "CodeBlockCollapse",
759
+ "CodeBlockCollapseContent",
760
+ "CodeBlockCollapsePreview",
761
+ "CodeBlockCollapseTrigger",
704
762
  "CodeBlockContent",
705
763
  "CodeBlockCopyIndicator",
706
764
  "CodeBlockCopyStatus",
707
765
  "CodeBlockCopyTrigger",
708
766
  "CodeBlockHeader",
709
767
  "CodeBlockLanguage",
768
+ "CodeBlockLine",
710
769
  "CodeBlockRoot",
711
770
  "CodeBlockTitle"
712
771
  ],
@@ -1363,6 +1422,31 @@
1363
1422
  ],
1364
1423
  "status": "covered"
1365
1424
  },
1425
+ {
1426
+ "id": "em",
1427
+ "name": "Em",
1428
+ "publicSubpaths": [
1429
+ "./em"
1430
+ ],
1431
+ "publicSymbols": [
1432
+ "Em",
1433
+ "EmProps"
1434
+ ],
1435
+ "sourceOwner": "src/components/em",
1436
+ "documentationOwner": "docs/components/em/README.md",
1437
+ "agentSources": {
1438
+ "json": "src/components/em/agent.json",
1439
+ "markdown": "src/components/em/agent.md"
1440
+ },
1441
+ "manifestPaths": {
1442
+ "json": "./em.json",
1443
+ "markdown": "./em.md"
1444
+ },
1445
+ "publicValueSymbols": [
1446
+ "Em"
1447
+ ],
1448
+ "status": "covered"
1449
+ },
1366
1450
  {
1367
1451
  "id": "feed",
1368
1452
  "name": "Feed",
@@ -1669,6 +1753,33 @@
1669
1753
  ],
1670
1754
  "status": "covered"
1671
1755
  },
1756
+ {
1757
+ "id": "highlight",
1758
+ "name": "Highlight",
1759
+ "publicSubpaths": [
1760
+ "./highlight"
1761
+ ],
1762
+ "publicSymbols": [
1763
+ "Highlight",
1764
+ "HighlightProps",
1765
+ "HighlightTone",
1766
+ "HighlightVariant"
1767
+ ],
1768
+ "sourceOwner": "src/components/highlight",
1769
+ "documentationOwner": "docs/components/highlight/README.md",
1770
+ "agentSources": {
1771
+ "json": "src/components/highlight/agent.json",
1772
+ "markdown": "src/components/highlight/agent.md"
1773
+ },
1774
+ "manifestPaths": {
1775
+ "json": "./highlight.json",
1776
+ "markdown": "./highlight.md"
1777
+ },
1778
+ "publicValueSymbols": [
1779
+ "Highlight"
1780
+ ],
1781
+ "status": "covered"
1782
+ },
1672
1783
  {
1673
1784
  "id": "hover-card",
1674
1785
  "name": "HoverCard",
@@ -1831,6 +1942,33 @@
1831
1942
  ],
1832
1943
  "status": "covered"
1833
1944
  },
1945
+ {
1946
+ "id": "kbd",
1947
+ "name": "Kbd",
1948
+ "publicSubpaths": [
1949
+ "./kbd"
1950
+ ],
1951
+ "publicSymbols": [
1952
+ "Kbd",
1953
+ "KbdProps",
1954
+ "KbdSize",
1955
+ "KbdVariant"
1956
+ ],
1957
+ "sourceOwner": "src/components/kbd",
1958
+ "documentationOwner": "docs/components/kbd/README.md",
1959
+ "agentSources": {
1960
+ "json": "src/components/kbd/agent.json",
1961
+ "markdown": "src/components/kbd/agent.md"
1962
+ },
1963
+ "manifestPaths": {
1964
+ "json": "./kbd.json",
1965
+ "markdown": "./kbd.md"
1966
+ },
1967
+ "publicValueSymbols": [
1968
+ "Kbd"
1969
+ ],
1970
+ "status": "covered"
1971
+ },
1834
1972
  {
1835
1973
  "id": "link",
1836
1974
  "name": "Link",
@@ -1930,6 +2068,33 @@
1930
2068
  ],
1931
2069
  "status": "covered"
1932
2070
  },
2071
+ {
2072
+ "id": "mark",
2073
+ "name": "Mark",
2074
+ "publicSubpaths": [
2075
+ "./mark"
2076
+ ],
2077
+ "publicSymbols": [
2078
+ "Mark",
2079
+ "MarkProps",
2080
+ "MarkTone",
2081
+ "MarkVariant"
2082
+ ],
2083
+ "sourceOwner": "src/components/mark",
2084
+ "documentationOwner": "docs/components/mark/README.md",
2085
+ "agentSources": {
2086
+ "json": "src/components/mark/agent.json",
2087
+ "markdown": "src/components/mark/agent.md"
2088
+ },
2089
+ "manifestPaths": {
2090
+ "json": "./mark.json",
2091
+ "markdown": "./mark.md"
2092
+ },
2093
+ "publicValueSymbols": [
2094
+ "Mark"
2095
+ ],
2096
+ "status": "covered"
2097
+ },
1933
2098
  {
1934
2099
  "id": "menubar",
1935
2100
  "name": "Menubar",
@@ -2555,6 +2720,34 @@
2555
2720
  ],
2556
2721
  "status": "covered"
2557
2722
  },
2723
+ {
2724
+ "id": "prose",
2725
+ "name": "Prose",
2726
+ "publicSubpaths": [
2727
+ "./prose"
2728
+ ],
2729
+ "publicSymbols": [
2730
+ "Prose",
2731
+ "ProseElement",
2732
+ "ProseMeasure",
2733
+ "ProseProps",
2734
+ "ProseSize"
2735
+ ],
2736
+ "sourceOwner": "src/components/prose",
2737
+ "documentationOwner": "docs/components/prose/README.md",
2738
+ "agentSources": {
2739
+ "json": "src/components/prose/agent.json",
2740
+ "markdown": "src/components/prose/agent.md"
2741
+ },
2742
+ "manifestPaths": {
2743
+ "json": "./prose.json",
2744
+ "markdown": "./prose.md"
2745
+ },
2746
+ "publicValueSymbols": [
2747
+ "Prose"
2748
+ ],
2749
+ "status": "covered"
2750
+ },
2558
2751
  {
2559
2752
  "id": "radio-group",
2560
2753
  "name": "RadioGroup",
@@ -4477,6 +4670,103 @@
4477
4670
  "value": false,
4478
4671
  "status": "covered"
4479
4672
  },
4673
+ {
4674
+ "surface": "./blockquote",
4675
+ "classification": "component",
4676
+ "ownerId": "blockquote",
4677
+ "status": "covered"
4678
+ },
4679
+ {
4680
+ "surface": "./blockquote#Blockquote",
4681
+ "classification": "compound-part",
4682
+ "ownerId": "blockquote",
4683
+ "value": true,
4684
+ "status": "covered"
4685
+ },
4686
+ {
4687
+ "surface": "./blockquote#BlockquoteAlign",
4688
+ "classification": "compound-part",
4689
+ "ownerId": "blockquote",
4690
+ "value": false,
4691
+ "status": "covered"
4692
+ },
4693
+ {
4694
+ "surface": "./blockquote#BlockquoteCaption",
4695
+ "classification": "compound-part",
4696
+ "ownerId": "blockquote",
4697
+ "value": true,
4698
+ "status": "covered"
4699
+ },
4700
+ {
4701
+ "surface": "./blockquote#BlockquoteCaptionProps",
4702
+ "classification": "compound-part",
4703
+ "ownerId": "blockquote",
4704
+ "value": false,
4705
+ "status": "covered"
4706
+ },
4707
+ {
4708
+ "surface": "./blockquote#BlockquoteCite",
4709
+ "classification": "compound-part",
4710
+ "ownerId": "blockquote",
4711
+ "value": true,
4712
+ "status": "covered"
4713
+ },
4714
+ {
4715
+ "surface": "./blockquote#BlockquoteCiteProps",
4716
+ "classification": "compound-part",
4717
+ "ownerId": "blockquote",
4718
+ "value": false,
4719
+ "status": "covered"
4720
+ },
4721
+ {
4722
+ "surface": "./blockquote#BlockquoteContent",
4723
+ "classification": "compound-part",
4724
+ "ownerId": "blockquote",
4725
+ "value": true,
4726
+ "status": "covered"
4727
+ },
4728
+ {
4729
+ "surface": "./blockquote#BlockquoteContentProps",
4730
+ "classification": "compound-part",
4731
+ "ownerId": "blockquote",
4732
+ "value": false,
4733
+ "status": "covered"
4734
+ },
4735
+ {
4736
+ "surface": "./blockquote#BlockquoteIcon",
4737
+ "classification": "compound-part",
4738
+ "ownerId": "blockquote",
4739
+ "value": true,
4740
+ "status": "covered"
4741
+ },
4742
+ {
4743
+ "surface": "./blockquote#BlockquoteIconProps",
4744
+ "classification": "compound-part",
4745
+ "ownerId": "blockquote",
4746
+ "value": false,
4747
+ "status": "covered"
4748
+ },
4749
+ {
4750
+ "surface": "./blockquote#BlockquoteRoot",
4751
+ "classification": "compound-part",
4752
+ "ownerId": "blockquote",
4753
+ "value": true,
4754
+ "status": "covered"
4755
+ },
4756
+ {
4757
+ "surface": "./blockquote#BlockquoteRootProps",
4758
+ "classification": "compound-part",
4759
+ "ownerId": "blockquote",
4760
+ "value": false,
4761
+ "status": "covered"
4762
+ },
4763
+ {
4764
+ "surface": "./blockquote#BlockquoteVariant",
4765
+ "classification": "compound-part",
4766
+ "ownerId": "blockquote",
4767
+ "value": false,
4768
+ "status": "covered"
4769
+ },
4480
4770
  {
4481
4771
  "surface": "./bottom-navigation",
4482
4772
  "classification": "component",
@@ -5307,6 +5597,76 @@
5307
5597
  "value": false,
5308
5598
  "status": "covered"
5309
5599
  },
5600
+ {
5601
+ "surface": "./code-block#CodeBlockAdapter",
5602
+ "classification": "compound-part",
5603
+ "ownerId": "code-block",
5604
+ "value": false,
5605
+ "status": "covered"
5606
+ },
5607
+ {
5608
+ "surface": "./code-block#CodeBlockAdapterContext",
5609
+ "classification": "compound-part",
5610
+ "ownerId": "code-block",
5611
+ "value": false,
5612
+ "status": "covered"
5613
+ },
5614
+ {
5615
+ "surface": "./code-block#CodeBlockCollapse",
5616
+ "classification": "compound-part",
5617
+ "ownerId": "code-block",
5618
+ "value": true,
5619
+ "status": "covered"
5620
+ },
5621
+ {
5622
+ "surface": "./code-block#CodeBlockCollapseContent",
5623
+ "classification": "compound-part",
5624
+ "ownerId": "code-block",
5625
+ "value": true,
5626
+ "status": "covered"
5627
+ },
5628
+ {
5629
+ "surface": "./code-block#CodeBlockCollapseContentProps",
5630
+ "classification": "compound-part",
5631
+ "ownerId": "code-block",
5632
+ "value": false,
5633
+ "status": "covered"
5634
+ },
5635
+ {
5636
+ "surface": "./code-block#CodeBlockCollapsePreview",
5637
+ "classification": "compound-part",
5638
+ "ownerId": "code-block",
5639
+ "value": true,
5640
+ "status": "covered"
5641
+ },
5642
+ {
5643
+ "surface": "./code-block#CodeBlockCollapsePreviewProps",
5644
+ "classification": "compound-part",
5645
+ "ownerId": "code-block",
5646
+ "value": false,
5647
+ "status": "covered"
5648
+ },
5649
+ {
5650
+ "surface": "./code-block#CodeBlockCollapseProps",
5651
+ "classification": "compound-part",
5652
+ "ownerId": "code-block",
5653
+ "value": false,
5654
+ "status": "covered"
5655
+ },
5656
+ {
5657
+ "surface": "./code-block#CodeBlockCollapseTrigger",
5658
+ "classification": "compound-part",
5659
+ "ownerId": "code-block",
5660
+ "value": true,
5661
+ "status": "covered"
5662
+ },
5663
+ {
5664
+ "surface": "./code-block#CodeBlockCollapseTriggerProps",
5665
+ "classification": "compound-part",
5666
+ "ownerId": "code-block",
5667
+ "value": false,
5668
+ "status": "covered"
5669
+ },
5310
5670
  {
5311
5671
  "surface": "./code-block#CodeBlockContent",
5312
5672
  "classification": "compound-part",
@@ -5391,6 +5751,27 @@
5391
5751
  "value": false,
5392
5752
  "status": "covered"
5393
5753
  },
5754
+ {
5755
+ "surface": "./code-block#CodeBlockLine",
5756
+ "classification": "compound-part",
5757
+ "ownerId": "code-block",
5758
+ "value": true,
5759
+ "status": "covered"
5760
+ },
5761
+ {
5762
+ "surface": "./code-block#CodeBlockLineChange",
5763
+ "classification": "compound-part",
5764
+ "ownerId": "code-block",
5765
+ "value": false,
5766
+ "status": "covered"
5767
+ },
5768
+ {
5769
+ "surface": "./code-block#CodeBlockLineProps",
5770
+ "classification": "compound-part",
5771
+ "ownerId": "code-block",
5772
+ "value": false,
5773
+ "status": "covered"
5774
+ },
5394
5775
  {
5395
5776
  "surface": "./code-block#CodeBlockRoot",
5396
5777
  "classification": "compound-part",
@@ -7416,6 +7797,26 @@
7416
7797
  "value": false,
7417
7798
  "status": "covered"
7418
7799
  },
7800
+ {
7801
+ "surface": "./em",
7802
+ "classification": "component",
7803
+ "ownerId": "em",
7804
+ "status": "covered"
7805
+ },
7806
+ {
7807
+ "surface": "./em#Em",
7808
+ "classification": "compound-part",
7809
+ "ownerId": "em",
7810
+ "value": true,
7811
+ "status": "covered"
7812
+ },
7813
+ {
7814
+ "surface": "./em#EmProps",
7815
+ "classification": "compound-part",
7816
+ "ownerId": "em",
7817
+ "value": false,
7818
+ "status": "covered"
7819
+ },
7419
7820
  {
7420
7821
  "surface": "./feed",
7421
7822
  "classification": "component",
@@ -8038,44 +8439,78 @@
8038
8439
  "status": "covered"
8039
8440
  },
8040
8441
  {
8041
- "surface": "./hover-card",
8442
+ "surface": "./highlight",
8042
8443
  "classification": "component",
8043
- "ownerId": "hover-card",
8444
+ "ownerId": "highlight",
8044
8445
  "status": "covered"
8045
8446
  },
8046
8447
  {
8047
- "surface": "./hover-card#HoverCard",
8448
+ "surface": "./highlight#Highlight",
8048
8449
  "classification": "compound-part",
8049
- "ownerId": "hover-card",
8450
+ "ownerId": "highlight",
8050
8451
  "value": true,
8051
8452
  "status": "covered"
8052
8453
  },
8053
8454
  {
8054
- "surface": "./hover-card#HoverCardArrow",
8455
+ "surface": "./highlight#HighlightProps",
8055
8456
  "classification": "compound-part",
8056
- "ownerId": "hover-card",
8057
- "value": true,
8457
+ "ownerId": "highlight",
8458
+ "value": false,
8058
8459
  "status": "covered"
8059
8460
  },
8060
8461
  {
8061
- "surface": "./hover-card#HoverCardArrowProps",
8462
+ "surface": "./highlight#HighlightTone",
8062
8463
  "classification": "compound-part",
8063
- "ownerId": "hover-card",
8464
+ "ownerId": "highlight",
8064
8465
  "value": false,
8065
8466
  "status": "covered"
8066
8467
  },
8067
8468
  {
8068
- "surface": "./hover-card#HoverCardContent",
8469
+ "surface": "./highlight#HighlightVariant",
8069
8470
  "classification": "compound-part",
8070
- "ownerId": "hover-card",
8071
- "value": true,
8471
+ "ownerId": "highlight",
8472
+ "value": false,
8072
8473
  "status": "covered"
8073
8474
  },
8074
8475
  {
8075
- "surface": "./hover-card#HoverCardContentProps",
8076
- "classification": "compound-part",
8476
+ "surface": "./hover-card",
8477
+ "classification": "component",
8077
8478
  "ownerId": "hover-card",
8078
- "value": false,
8479
+ "status": "covered"
8480
+ },
8481
+ {
8482
+ "surface": "./hover-card#HoverCard",
8483
+ "classification": "compound-part",
8484
+ "ownerId": "hover-card",
8485
+ "value": true,
8486
+ "status": "covered"
8487
+ },
8488
+ {
8489
+ "surface": "./hover-card#HoverCardArrow",
8490
+ "classification": "compound-part",
8491
+ "ownerId": "hover-card",
8492
+ "value": true,
8493
+ "status": "covered"
8494
+ },
8495
+ {
8496
+ "surface": "./hover-card#HoverCardArrowProps",
8497
+ "classification": "compound-part",
8498
+ "ownerId": "hover-card",
8499
+ "value": false,
8500
+ "status": "covered"
8501
+ },
8502
+ {
8503
+ "surface": "./hover-card#HoverCardContent",
8504
+ "classification": "compound-part",
8505
+ "ownerId": "hover-card",
8506
+ "value": true,
8507
+ "status": "covered"
8508
+ },
8509
+ {
8510
+ "surface": "./hover-card#HoverCardContentProps",
8511
+ "classification": "compound-part",
8512
+ "ownerId": "hover-card",
8513
+ "value": false,
8079
8514
  "status": "covered"
8080
8515
  },
8081
8516
  {
@@ -8340,6 +8775,40 @@
8340
8775
  "value": false,
8341
8776
  "status": "covered"
8342
8777
  },
8778
+ {
8779
+ "surface": "./kbd",
8780
+ "classification": "component",
8781
+ "ownerId": "kbd",
8782
+ "status": "covered"
8783
+ },
8784
+ {
8785
+ "surface": "./kbd#Kbd",
8786
+ "classification": "compound-part",
8787
+ "ownerId": "kbd",
8788
+ "value": true,
8789
+ "status": "covered"
8790
+ },
8791
+ {
8792
+ "surface": "./kbd#KbdProps",
8793
+ "classification": "compound-part",
8794
+ "ownerId": "kbd",
8795
+ "value": false,
8796
+ "status": "covered"
8797
+ },
8798
+ {
8799
+ "surface": "./kbd#KbdSize",
8800
+ "classification": "compound-part",
8801
+ "ownerId": "kbd",
8802
+ "value": false,
8803
+ "status": "covered"
8804
+ },
8805
+ {
8806
+ "surface": "./kbd#KbdVariant",
8807
+ "classification": "compound-part",
8808
+ "ownerId": "kbd",
8809
+ "value": false,
8810
+ "status": "covered"
8811
+ },
8343
8812
  {
8344
8813
  "surface": "./link",
8345
8814
  "classification": "component",
@@ -8547,6 +9016,40 @@
8547
9016
  "value": false,
8548
9017
  "status": "covered"
8549
9018
  },
9019
+ {
9020
+ "surface": "./mark",
9021
+ "classification": "component",
9022
+ "ownerId": "mark",
9023
+ "status": "covered"
9024
+ },
9025
+ {
9026
+ "surface": "./mark#Mark",
9027
+ "classification": "compound-part",
9028
+ "ownerId": "mark",
9029
+ "value": true,
9030
+ "status": "covered"
9031
+ },
9032
+ {
9033
+ "surface": "./mark#MarkProps",
9034
+ "classification": "compound-part",
9035
+ "ownerId": "mark",
9036
+ "value": false,
9037
+ "status": "covered"
9038
+ },
9039
+ {
9040
+ "surface": "./mark#MarkTone",
9041
+ "classification": "compound-part",
9042
+ "ownerId": "mark",
9043
+ "value": false,
9044
+ "status": "covered"
9045
+ },
9046
+ {
9047
+ "surface": "./mark#MarkVariant",
9048
+ "classification": "compound-part",
9049
+ "ownerId": "mark",
9050
+ "value": false,
9051
+ "status": "covered"
9052
+ },
8550
9053
  {
8551
9054
  "surface": "./menubar",
8552
9055
  "classification": "component",
@@ -10328,6 +10831,47 @@
10328
10831
  "value": false,
10329
10832
  "status": "covered"
10330
10833
  },
10834
+ {
10835
+ "surface": "./prose",
10836
+ "classification": "component",
10837
+ "ownerId": "prose",
10838
+ "status": "covered"
10839
+ },
10840
+ {
10841
+ "surface": "./prose#Prose",
10842
+ "classification": "compound-part",
10843
+ "ownerId": "prose",
10844
+ "value": true,
10845
+ "status": "covered"
10846
+ },
10847
+ {
10848
+ "surface": "./prose#ProseElement",
10849
+ "classification": "compound-part",
10850
+ "ownerId": "prose",
10851
+ "value": false,
10852
+ "status": "covered"
10853
+ },
10854
+ {
10855
+ "surface": "./prose#ProseMeasure",
10856
+ "classification": "compound-part",
10857
+ "ownerId": "prose",
10858
+ "value": false,
10859
+ "status": "covered"
10860
+ },
10861
+ {
10862
+ "surface": "./prose#ProseProps",
10863
+ "classification": "compound-part",
10864
+ "ownerId": "prose",
10865
+ "value": false,
10866
+ "status": "covered"
10867
+ },
10868
+ {
10869
+ "surface": "./prose#ProseSize",
10870
+ "classification": "compound-part",
10871
+ "ownerId": "prose",
10872
+ "value": false,
10873
+ "status": "covered"
10874
+ },
10331
10875
  {
10332
10876
  "surface": "./radio-group",
10333
10877
  "classification": "component",
@@ -13967,6 +14511,110 @@
13967
14511
  "value": false,
13968
14512
  "status": "covered"
13969
14513
  },
14514
+ {
14515
+ "surface": ".#Blockquote",
14516
+ "classification": "alias",
14517
+ "ownerId": "blockquote",
14518
+ "documentation": null,
14519
+ "value": true,
14520
+ "status": "covered"
14521
+ },
14522
+ {
14523
+ "surface": ".#BlockquoteAlign",
14524
+ "classification": "alias",
14525
+ "ownerId": "blockquote",
14526
+ "documentation": null,
14527
+ "value": false,
14528
+ "status": "covered"
14529
+ },
14530
+ {
14531
+ "surface": ".#BlockquoteCaption",
14532
+ "classification": "alias",
14533
+ "ownerId": "blockquote",
14534
+ "documentation": null,
14535
+ "value": true,
14536
+ "status": "covered"
14537
+ },
14538
+ {
14539
+ "surface": ".#BlockquoteCaptionProps",
14540
+ "classification": "alias",
14541
+ "ownerId": "blockquote",
14542
+ "documentation": null,
14543
+ "value": false,
14544
+ "status": "covered"
14545
+ },
14546
+ {
14547
+ "surface": ".#BlockquoteCite",
14548
+ "classification": "alias",
14549
+ "ownerId": "blockquote",
14550
+ "documentation": null,
14551
+ "value": true,
14552
+ "status": "covered"
14553
+ },
14554
+ {
14555
+ "surface": ".#BlockquoteCiteProps",
14556
+ "classification": "alias",
14557
+ "ownerId": "blockquote",
14558
+ "documentation": null,
14559
+ "value": false,
14560
+ "status": "covered"
14561
+ },
14562
+ {
14563
+ "surface": ".#BlockquoteContent",
14564
+ "classification": "alias",
14565
+ "ownerId": "blockquote",
14566
+ "documentation": null,
14567
+ "value": true,
14568
+ "status": "covered"
14569
+ },
14570
+ {
14571
+ "surface": ".#BlockquoteContentProps",
14572
+ "classification": "alias",
14573
+ "ownerId": "blockquote",
14574
+ "documentation": null,
14575
+ "value": false,
14576
+ "status": "covered"
14577
+ },
14578
+ {
14579
+ "surface": ".#BlockquoteIcon",
14580
+ "classification": "alias",
14581
+ "ownerId": "blockquote",
14582
+ "documentation": null,
14583
+ "value": true,
14584
+ "status": "covered"
14585
+ },
14586
+ {
14587
+ "surface": ".#BlockquoteIconProps",
14588
+ "classification": "alias",
14589
+ "ownerId": "blockquote",
14590
+ "documentation": null,
14591
+ "value": false,
14592
+ "status": "covered"
14593
+ },
14594
+ {
14595
+ "surface": ".#BlockquoteRoot",
14596
+ "classification": "alias",
14597
+ "ownerId": "blockquote",
14598
+ "documentation": null,
14599
+ "value": true,
14600
+ "status": "covered"
14601
+ },
14602
+ {
14603
+ "surface": ".#BlockquoteRootProps",
14604
+ "classification": "alias",
14605
+ "ownerId": "blockquote",
14606
+ "documentation": null,
14607
+ "value": false,
14608
+ "status": "covered"
14609
+ },
14610
+ {
14611
+ "surface": ".#BlockquoteVariant",
14612
+ "classification": "alias",
14613
+ "ownerId": "blockquote",
14614
+ "documentation": null,
14615
+ "value": false,
14616
+ "status": "covered"
14617
+ },
13970
14618
  {
13971
14619
  "surface": ".#BottomNavigation",
13972
14620
  "classification": "alias",
@@ -14792,15 +15440,15 @@
14792
15440
  "status": "covered"
14793
15441
  },
14794
15442
  {
14795
- "surface": ".#CodeBlockContent",
15443
+ "surface": ".#CodeBlockAdapter",
14796
15444
  "classification": "alias",
14797
15445
  "ownerId": "code-block",
14798
15446
  "documentation": null,
14799
- "value": true,
15447
+ "value": false,
14800
15448
  "status": "covered"
14801
15449
  },
14802
15450
  {
14803
- "surface": ".#CodeBlockContentProps",
15451
+ "surface": ".#CodeBlockAdapterContext",
14804
15452
  "classification": "alias",
14805
15453
  "ownerId": "code-block",
14806
15454
  "documentation": null,
@@ -14808,7 +15456,7 @@
14808
15456
  "status": "covered"
14809
15457
  },
14810
15458
  {
14811
- "surface": ".#CodeBlockCopyIndicator",
15459
+ "surface": ".#CodeBlockCollapse",
14812
15460
  "classification": "alias",
14813
15461
  "ownerId": "code-block",
14814
15462
  "documentation": null,
@@ -14816,39 +15464,39 @@
14816
15464
  "status": "covered"
14817
15465
  },
14818
15466
  {
14819
- "surface": ".#CodeBlockCopyIndicatorProps",
15467
+ "surface": ".#CodeBlockCollapseContent",
14820
15468
  "classification": "alias",
14821
15469
  "ownerId": "code-block",
14822
15470
  "documentation": null,
14823
- "value": false,
15471
+ "value": true,
14824
15472
  "status": "covered"
14825
15473
  },
14826
15474
  {
14827
- "surface": ".#CodeBlockCopyStatus",
15475
+ "surface": ".#CodeBlockCollapseContentProps",
14828
15476
  "classification": "alias",
14829
15477
  "ownerId": "code-block",
14830
15478
  "documentation": null,
14831
- "value": true,
15479
+ "value": false,
14832
15480
  "status": "covered"
14833
15481
  },
14834
15482
  {
14835
- "surface": ".#CodeBlockCopyStatusProps",
15483
+ "surface": ".#CodeBlockCollapsePreview",
14836
15484
  "classification": "alias",
14837
15485
  "ownerId": "code-block",
14838
15486
  "documentation": null,
14839
- "value": false,
15487
+ "value": true,
14840
15488
  "status": "covered"
14841
15489
  },
14842
15490
  {
14843
- "surface": ".#CodeBlockCopyTrigger",
15491
+ "surface": ".#CodeBlockCollapsePreviewProps",
14844
15492
  "classification": "alias",
14845
15493
  "ownerId": "code-block",
14846
15494
  "documentation": null,
14847
- "value": true,
15495
+ "value": false,
14848
15496
  "status": "covered"
14849
15497
  },
14850
15498
  {
14851
- "surface": ".#CodeBlockCopyTriggerProps",
15499
+ "surface": ".#CodeBlockCollapseProps",
14852
15500
  "classification": "alias",
14853
15501
  "ownerId": "code-block",
14854
15502
  "documentation": null,
@@ -14856,7 +15504,7 @@
14856
15504
  "status": "covered"
14857
15505
  },
14858
15506
  {
14859
- "surface": ".#CodeBlockHeader",
15507
+ "surface": ".#CodeBlockCollapseTrigger",
14860
15508
  "classification": "alias",
14861
15509
  "ownerId": "code-block",
14862
15510
  "documentation": null,
@@ -14864,7 +15512,7 @@
14864
15512
  "status": "covered"
14865
15513
  },
14866
15514
  {
14867
- "surface": ".#CodeBlockHeaderProps",
15515
+ "surface": ".#CodeBlockCollapseTriggerProps",
14868
15516
  "classification": "alias",
14869
15517
  "ownerId": "code-block",
14870
15518
  "documentation": null,
@@ -14872,7 +15520,7 @@
14872
15520
  "status": "covered"
14873
15521
  },
14874
15522
  {
14875
- "surface": ".#CodeBlockLanguage",
15523
+ "surface": ".#CodeBlockContent",
14876
15524
  "classification": "alias",
14877
15525
  "ownerId": "code-block",
14878
15526
  "documentation": null,
@@ -14880,7 +15528,7 @@
14880
15528
  "status": "covered"
14881
15529
  },
14882
15530
  {
14883
- "surface": ".#CodeBlockLanguageProps",
15531
+ "surface": ".#CodeBlockContentProps",
14884
15532
  "classification": "alias",
14885
15533
  "ownerId": "code-block",
14886
15534
  "documentation": null,
@@ -14888,7 +15536,7 @@
14888
15536
  "status": "covered"
14889
15537
  },
14890
15538
  {
14891
- "surface": ".#CodeBlockRoot",
15539
+ "surface": ".#CodeBlockCopyIndicator",
14892
15540
  "classification": "alias",
14893
15541
  "ownerId": "code-block",
14894
15542
  "documentation": null,
@@ -14896,7 +15544,7 @@
14896
15544
  "status": "covered"
14897
15545
  },
14898
15546
  {
14899
- "surface": ".#CodeBlockRootProps",
15547
+ "surface": ".#CodeBlockCopyIndicatorProps",
14900
15548
  "classification": "alias",
14901
15549
  "ownerId": "code-block",
14902
15550
  "documentation": null,
@@ -14904,7 +15552,15 @@
14904
15552
  "status": "covered"
14905
15553
  },
14906
15554
  {
14907
- "surface": ".#CodeBlockSize",
15555
+ "surface": ".#CodeBlockCopyStatus",
15556
+ "classification": "alias",
15557
+ "ownerId": "code-block",
15558
+ "documentation": null,
15559
+ "value": true,
15560
+ "status": "covered"
15561
+ },
15562
+ {
15563
+ "surface": ".#CodeBlockCopyStatusProps",
14908
15564
  "classification": "alias",
14909
15565
  "ownerId": "code-block",
14910
15566
  "documentation": null,
@@ -14912,7 +15568,7 @@
14912
15568
  "status": "covered"
14913
15569
  },
14914
15570
  {
14915
- "surface": ".#CodeBlockTitle",
15571
+ "surface": ".#CodeBlockCopyTrigger",
14916
15572
  "classification": "alias",
14917
15573
  "ownerId": "code-block",
14918
15574
  "documentation": null,
@@ -14920,7 +15576,7 @@
14920
15576
  "status": "covered"
14921
15577
  },
14922
15578
  {
14923
- "surface": ".#CodeBlockTitleProps",
15579
+ "surface": ".#CodeBlockCopyTriggerProps",
14924
15580
  "classification": "alias",
14925
15581
  "ownerId": "code-block",
14926
15582
  "documentation": null,
@@ -14928,15 +15584,15 @@
14928
15584
  "status": "covered"
14929
15585
  },
14930
15586
  {
14931
- "surface": ".#CodeBlockVariant",
15587
+ "surface": ".#CodeBlockHeader",
14932
15588
  "classification": "alias",
14933
15589
  "ownerId": "code-block",
14934
15590
  "documentation": null,
14935
- "value": false,
15591
+ "value": true,
14936
15592
  "status": "covered"
14937
15593
  },
14938
15594
  {
14939
- "surface": ".#CodeBlockWrap",
15595
+ "surface": ".#CodeBlockHeaderProps",
14940
15596
  "classification": "alias",
14941
15597
  "ownerId": "code-block",
14942
15598
  "documentation": null,
@@ -14944,33 +15600,129 @@
14944
15600
  "status": "covered"
14945
15601
  },
14946
15602
  {
14947
- "surface": ".#CodeProps",
15603
+ "surface": ".#CodeBlockLanguage",
14948
15604
  "classification": "alias",
14949
- "ownerId": "code",
15605
+ "ownerId": "code-block",
14950
15606
  "documentation": null,
14951
- "value": false,
15607
+ "value": true,
14952
15608
  "status": "covered"
14953
15609
  },
14954
15610
  {
14955
- "surface": ".#CodeSize",
15611
+ "surface": ".#CodeBlockLanguageProps",
14956
15612
  "classification": "alias",
14957
- "ownerId": "code",
15613
+ "ownerId": "code-block",
14958
15614
  "documentation": null,
14959
15615
  "value": false,
14960
15616
  "status": "covered"
14961
15617
  },
14962
15618
  {
14963
- "surface": ".#CodeTone",
15619
+ "surface": ".#CodeBlockLine",
14964
15620
  "classification": "alias",
14965
- "ownerId": "code",
15621
+ "ownerId": "code-block",
14966
15622
  "documentation": null,
14967
- "value": false,
15623
+ "value": true,
14968
15624
  "status": "covered"
14969
15625
  },
14970
15626
  {
14971
- "surface": ".#CodeVariant",
15627
+ "surface": ".#CodeBlockLineChange",
14972
15628
  "classification": "alias",
14973
- "ownerId": "code",
15629
+ "ownerId": "code-block",
15630
+ "documentation": null,
15631
+ "value": false,
15632
+ "status": "covered"
15633
+ },
15634
+ {
15635
+ "surface": ".#CodeBlockLineProps",
15636
+ "classification": "alias",
15637
+ "ownerId": "code-block",
15638
+ "documentation": null,
15639
+ "value": false,
15640
+ "status": "covered"
15641
+ },
15642
+ {
15643
+ "surface": ".#CodeBlockRoot",
15644
+ "classification": "alias",
15645
+ "ownerId": "code-block",
15646
+ "documentation": null,
15647
+ "value": true,
15648
+ "status": "covered"
15649
+ },
15650
+ {
15651
+ "surface": ".#CodeBlockRootProps",
15652
+ "classification": "alias",
15653
+ "ownerId": "code-block",
15654
+ "documentation": null,
15655
+ "value": false,
15656
+ "status": "covered"
15657
+ },
15658
+ {
15659
+ "surface": ".#CodeBlockSize",
15660
+ "classification": "alias",
15661
+ "ownerId": "code-block",
15662
+ "documentation": null,
15663
+ "value": false,
15664
+ "status": "covered"
15665
+ },
15666
+ {
15667
+ "surface": ".#CodeBlockTitle",
15668
+ "classification": "alias",
15669
+ "ownerId": "code-block",
15670
+ "documentation": null,
15671
+ "value": true,
15672
+ "status": "covered"
15673
+ },
15674
+ {
15675
+ "surface": ".#CodeBlockTitleProps",
15676
+ "classification": "alias",
15677
+ "ownerId": "code-block",
15678
+ "documentation": null,
15679
+ "value": false,
15680
+ "status": "covered"
15681
+ },
15682
+ {
15683
+ "surface": ".#CodeBlockVariant",
15684
+ "classification": "alias",
15685
+ "ownerId": "code-block",
15686
+ "documentation": null,
15687
+ "value": false,
15688
+ "status": "covered"
15689
+ },
15690
+ {
15691
+ "surface": ".#CodeBlockWrap",
15692
+ "classification": "alias",
15693
+ "ownerId": "code-block",
15694
+ "documentation": null,
15695
+ "value": false,
15696
+ "status": "covered"
15697
+ },
15698
+ {
15699
+ "surface": ".#CodeProps",
15700
+ "classification": "alias",
15701
+ "ownerId": "code",
15702
+ "documentation": null,
15703
+ "value": false,
15704
+ "status": "covered"
15705
+ },
15706
+ {
15707
+ "surface": ".#CodeSize",
15708
+ "classification": "alias",
15709
+ "ownerId": "code",
15710
+ "documentation": null,
15711
+ "value": false,
15712
+ "status": "covered"
15713
+ },
15714
+ {
15715
+ "surface": ".#CodeTone",
15716
+ "classification": "alias",
15717
+ "ownerId": "code",
15718
+ "documentation": null,
15719
+ "value": false,
15720
+ "status": "covered"
15721
+ },
15722
+ {
15723
+ "surface": ".#CodeVariant",
15724
+ "classification": "alias",
15725
+ "ownerId": "code",
14974
15726
  "documentation": null,
14975
15727
  "value": false,
14976
15728
  "status": "covered"
@@ -16727,6 +17479,22 @@
16727
17479
  "value": false,
16728
17480
  "status": "covered"
16729
17481
  },
17482
+ {
17483
+ "surface": ".#Em",
17484
+ "classification": "alias",
17485
+ "ownerId": "em",
17486
+ "documentation": null,
17487
+ "value": true,
17488
+ "status": "covered"
17489
+ },
17490
+ {
17491
+ "surface": ".#EmProps",
17492
+ "classification": "alias",
17493
+ "ownerId": "em",
17494
+ "documentation": null,
17495
+ "value": false,
17496
+ "status": "covered"
17497
+ },
16730
17498
  {
16731
17499
  "surface": ".#Eyebrow",
16732
17500
  "classification": "alias",
@@ -17327,6 +18095,38 @@
17327
18095
  "value": false,
17328
18096
  "status": "covered"
17329
18097
  },
18098
+ {
18099
+ "surface": ".#Highlight",
18100
+ "classification": "alias",
18101
+ "ownerId": "highlight",
18102
+ "documentation": null,
18103
+ "value": true,
18104
+ "status": "covered"
18105
+ },
18106
+ {
18107
+ "surface": ".#HighlightProps",
18108
+ "classification": "alias",
18109
+ "ownerId": "highlight",
18110
+ "documentation": null,
18111
+ "value": false,
18112
+ "status": "covered"
18113
+ },
18114
+ {
18115
+ "surface": ".#HighlightTone",
18116
+ "classification": "alias",
18117
+ "ownerId": "highlight",
18118
+ "documentation": null,
18119
+ "value": false,
18120
+ "status": "covered"
18121
+ },
18122
+ {
18123
+ "surface": ".#HighlightVariant",
18124
+ "classification": "alias",
18125
+ "ownerId": "highlight",
18126
+ "documentation": null,
18127
+ "value": false,
18128
+ "status": "covered"
18129
+ },
17330
18130
  {
17331
18131
  "surface": ".#HoverCard",
17332
18132
  "classification": "alias",
@@ -17615,6 +18415,38 @@
17615
18415
  "value": false,
17616
18416
  "status": "covered"
17617
18417
  },
18418
+ {
18419
+ "surface": ".#Kbd",
18420
+ "classification": "alias",
18421
+ "ownerId": "kbd",
18422
+ "documentation": null,
18423
+ "value": true,
18424
+ "status": "covered"
18425
+ },
18426
+ {
18427
+ "surface": ".#KbdProps",
18428
+ "classification": "alias",
18429
+ "ownerId": "kbd",
18430
+ "documentation": null,
18431
+ "value": false,
18432
+ "status": "covered"
18433
+ },
18434
+ {
18435
+ "surface": ".#KbdSize",
18436
+ "classification": "alias",
18437
+ "ownerId": "kbd",
18438
+ "documentation": null,
18439
+ "value": false,
18440
+ "status": "covered"
18441
+ },
18442
+ {
18443
+ "surface": ".#KbdVariant",
18444
+ "classification": "alias",
18445
+ "ownerId": "kbd",
18446
+ "documentation": null,
18447
+ "value": false,
18448
+ "status": "covered"
18449
+ },
17618
18450
  {
17619
18451
  "surface": ".#Link",
17620
18452
  "classification": "alias",
@@ -17831,6 +18663,38 @@
17831
18663
  "value": false,
17832
18664
  "status": "covered"
17833
18665
  },
18666
+ {
18667
+ "surface": ".#Mark",
18668
+ "classification": "alias",
18669
+ "ownerId": "mark",
18670
+ "documentation": null,
18671
+ "value": true,
18672
+ "status": "covered"
18673
+ },
18674
+ {
18675
+ "surface": ".#MarkProps",
18676
+ "classification": "alias",
18677
+ "ownerId": "mark",
18678
+ "documentation": null,
18679
+ "value": false,
18680
+ "status": "covered"
18681
+ },
18682
+ {
18683
+ "surface": ".#MarkTone",
18684
+ "classification": "alias",
18685
+ "ownerId": "mark",
18686
+ "documentation": null,
18687
+ "value": false,
18688
+ "status": "covered"
18689
+ },
18690
+ {
18691
+ "surface": ".#MarkVariant",
18692
+ "classification": "alias",
18693
+ "ownerId": "mark",
18694
+ "documentation": null,
18695
+ "value": false,
18696
+ "status": "covered"
18697
+ },
17834
18698
  {
17835
18699
  "surface": ".#Menubar",
17836
18700
  "classification": "alias",
@@ -19855,6 +20719,46 @@
19855
20719
  "value": false,
19856
20720
  "status": "covered"
19857
20721
  },
20722
+ {
20723
+ "surface": ".#Prose",
20724
+ "classification": "alias",
20725
+ "ownerId": "prose",
20726
+ "documentation": null,
20727
+ "value": true,
20728
+ "status": "covered"
20729
+ },
20730
+ {
20731
+ "surface": ".#ProseElement",
20732
+ "classification": "alias",
20733
+ "ownerId": "prose",
20734
+ "documentation": null,
20735
+ "value": false,
20736
+ "status": "covered"
20737
+ },
20738
+ {
20739
+ "surface": ".#ProseMeasure",
20740
+ "classification": "alias",
20741
+ "ownerId": "prose",
20742
+ "documentation": null,
20743
+ "value": false,
20744
+ "status": "covered"
20745
+ },
20746
+ {
20747
+ "surface": ".#ProseProps",
20748
+ "classification": "alias",
20749
+ "ownerId": "prose",
20750
+ "documentation": null,
20751
+ "value": false,
20752
+ "status": "covered"
20753
+ },
20754
+ {
20755
+ "surface": ".#ProseSize",
20756
+ "classification": "alias",
20757
+ "ownerId": "prose",
20758
+ "documentation": null,
20759
+ "value": false,
20760
+ "status": "covered"
20761
+ },
19858
20762
  {
19859
20763
  "surface": ".#RadioGroup",
19860
20764
  "classification": "alias",
@@ -23268,8 +24172,8 @@
23268
24172
  "selection": 18,
23269
24173
  "destinations": [
23270
24174
  {
23271
- "kind": "native-application",
23272
- "id": "native-quotation"
24175
+ "kind": "component",
24176
+ "id": "blockquote"
23273
24177
  },
23274
24178
  {
23275
24179
  "kind": "component",
@@ -23415,7 +24319,15 @@
23415
24319
  "destinations": [
23416
24320
  {
23417
24321
  "kind": "component",
23418
- "id": "code-block"
24322
+ "id": "container"
24323
+ },
24324
+ {
24325
+ "kind": "component",
24326
+ "id": "surface"
24327
+ },
24328
+ {
24329
+ "kind": "component",
24330
+ "id": "card"
23419
24331
  }
23420
24332
  ],
23421
24333
  "status": "covered"
@@ -23426,11 +24338,7 @@
23426
24338
  "destinations": [
23427
24339
  {
23428
24340
  "kind": "component",
23429
- "id": "link"
23430
- },
23431
- {
23432
- "kind": "component",
23433
- "id": "button"
24341
+ "id": "app-bar"
23434
24342
  }
23435
24343
  ],
23436
24344
  "status": "covered"
@@ -23441,15 +24349,11 @@
23441
24349
  "destinations": [
23442
24350
  {
23443
24351
  "kind": "component",
23444
- "id": "accordion"
23445
- },
23446
- {
23447
- "kind": "component",
23448
- "id": "collapsible"
24352
+ "id": "show"
23449
24353
  },
23450
24354
  {
23451
24355
  "kind": "component",
23452
- "id": "tabs"
24356
+ "id": "hide"
23453
24357
  }
23454
24358
  ],
23455
24359
  "status": "covered"
@@ -23460,15 +24364,7 @@
23460
24364
  "destinations": [
23461
24365
  {
23462
24366
  "kind": "component",
23463
- "id": "dialog"
23464
- },
23465
- {
23466
- "kind": "component",
23467
- "id": "alert-dialog"
23468
- },
23469
- {
23470
- "kind": "component",
23471
- "id": "drawer"
24367
+ "id": "image"
23472
24368
  }
23473
24369
  ],
23474
24370
  "status": "covered"
@@ -23479,11 +24375,19 @@
23479
24375
  "destinations": [
23480
24376
  {
23481
24377
  "kind": "component",
23482
- "id": "alert-dialog"
24378
+ "id": "aspect-ratio"
23483
24379
  },
23484
24380
  {
23485
24381
  "kind": "component",
23486
- "id": "dialog"
24382
+ "id": "image"
24383
+ },
24384
+ {
24385
+ "kind": "component",
24386
+ "id": "surface"
24387
+ },
24388
+ {
24389
+ "kind": "component",
24390
+ "id": "skeleton"
23487
24391
  }
23488
24392
  ],
23489
24393
  "status": "covered"
@@ -23491,6 +24395,100 @@
23491
24395
  {
23492
24396
  "guideId": "layer-selection",
23493
24397
  "selection": 15,
24398
+ "destinations": [
24399
+ {
24400
+ "kind": "component",
24401
+ "id": "code-block"
24402
+ },
24403
+ {
24404
+ "kind": "component",
24405
+ "id": "collapsible"
24406
+ }
24407
+ ],
24408
+ "status": "covered"
24409
+ },
24410
+ {
24411
+ "guideId": "layer-selection",
24412
+ "selection": 16,
24413
+ "destinations": [
24414
+ {
24415
+ "kind": "component",
24416
+ "id": "link"
24417
+ },
24418
+ {
24419
+ "kind": "component",
24420
+ "id": "button"
24421
+ }
24422
+ ],
24423
+ "status": "covered"
24424
+ },
24425
+ {
24426
+ "guideId": "layer-selection",
24427
+ "selection": 17,
24428
+ "destinations": [
24429
+ {
24430
+ "kind": "component",
24431
+ "id": "accordion"
24432
+ },
24433
+ {
24434
+ "kind": "component",
24435
+ "id": "collapsible"
24436
+ },
24437
+ {
24438
+ "kind": "component",
24439
+ "id": "tabs"
24440
+ }
24441
+ ],
24442
+ "status": "covered"
24443
+ },
24444
+ {
24445
+ "guideId": "layer-selection",
24446
+ "selection": 18,
24447
+ "destinations": [
24448
+ {
24449
+ "kind": "component",
24450
+ "id": "dialog"
24451
+ },
24452
+ {
24453
+ "kind": "component",
24454
+ "id": "alert-dialog"
24455
+ },
24456
+ {
24457
+ "kind": "component",
24458
+ "id": "drawer"
24459
+ }
24460
+ ],
24461
+ "status": "covered"
24462
+ },
24463
+ {
24464
+ "guideId": "layer-selection",
24465
+ "selection": 19,
24466
+ "destinations": [
24467
+ {
24468
+ "kind": "component",
24469
+ "id": "alert-dialog"
24470
+ },
24471
+ {
24472
+ "kind": "component",
24473
+ "id": "dialog"
24474
+ }
24475
+ ],
24476
+ "status": "covered"
24477
+ },
24478
+ {
24479
+ "guideId": "layer-selection",
24480
+ "selection": 2,
24481
+ "destinations": [
24482
+ {
24483
+ "kind": "component",
24484
+ "id": "text"
24485
+ }
24486
+ ],
24487
+ "status": "covered"
24488
+ },
24489
+ {
24490
+ "guideId": "layer-selection",
24491
+ "selection": 20,
23494
24492
  "destinations": [
23495
24493
  {
23496
24494
  "kind": "component",
@@ -23525,7 +24523,7 @@
23525
24523
  },
23526
24524
  {
23527
24525
  "guideId": "layer-selection",
23528
- "selection": 16,
24526
+ "selection": 21,
23529
24527
  "destinations": [
23530
24528
  {
23531
24529
  "kind": "component",
@@ -23556,7 +24554,7 @@
23556
24554
  },
23557
24555
  {
23558
24556
  "guideId": "layer-selection",
23559
- "selection": 17,
24557
+ "selection": 22,
23560
24558
  "destinations": [
23561
24559
  {
23562
24560
  "kind": "component",
@@ -23575,7 +24573,7 @@
23575
24573
  },
23576
24574
  {
23577
24575
  "guideId": "layer-selection",
23578
- "selection": 18,
24576
+ "selection": 23,
23579
24577
  "destinations": [
23580
24578
  {
23581
24579
  "kind": "component",
@@ -23606,7 +24604,7 @@
23606
24604
  },
23607
24605
  {
23608
24606
  "guideId": "layer-selection",
23609
- "selection": 19,
24607
+ "selection": 24,
23610
24608
  "destinations": [
23611
24609
  {
23612
24610
  "kind": "component",
@@ -23633,18 +24631,7 @@
23633
24631
  },
23634
24632
  {
23635
24633
  "guideId": "layer-selection",
23636
- "selection": 2,
23637
- "destinations": [
23638
- {
23639
- "kind": "component",
23640
- "id": "text"
23641
- }
23642
- ],
23643
- "status": "covered"
23644
- },
23645
- {
23646
- "guideId": "layer-selection",
23647
- "selection": 20,
24634
+ "selection": 25,
23648
24635
  "destinations": [
23649
24636
  {
23650
24637
  "kind": "component",
@@ -23667,7 +24654,7 @@
23667
24654
  },
23668
24655
  {
23669
24656
  "guideId": "layer-selection",
23670
- "selection": 21,
24657
+ "selection": 26,
23671
24658
  "destinations": [
23672
24659
  {
23673
24660
  "kind": "component",
@@ -23690,7 +24677,7 @@
23690
24677
  },
23691
24678
  {
23692
24679
  "guideId": "layer-selection",
23693
- "selection": 22,
24680
+ "selection": 27,
23694
24681
  "destinations": [
23695
24682
  {
23696
24683
  "kind": "component",
@@ -23713,7 +24700,7 @@
23713
24700
  },
23714
24701
  {
23715
24702
  "guideId": "layer-selection",
23716
- "selection": 23,
24703
+ "selection": 28,
23717
24704
  "destinations": [
23718
24705
  {
23719
24706
  "kind": "component",
@@ -23732,7 +24719,7 @@
23732
24719
  },
23733
24720
  {
23734
24721
  "guideId": "layer-selection",
23735
- "selection": 24,
24722
+ "selection": 29,
23736
24723
  "destinations": [
23737
24724
  {
23738
24725
  "kind": "component",
@@ -23759,7 +24746,22 @@
23759
24746
  },
23760
24747
  {
23761
24748
  "guideId": "layer-selection",
23762
- "selection": 25,
24749
+ "selection": 3,
24750
+ "destinations": [
24751
+ {
24752
+ "kind": "component",
24753
+ "id": "em"
24754
+ },
24755
+ {
24756
+ "kind": "component",
24757
+ "id": "text"
24758
+ }
24759
+ ],
24760
+ "status": "covered"
24761
+ },
24762
+ {
24763
+ "guideId": "layer-selection",
24764
+ "selection": 30,
23763
24765
  "destinations": [
23764
24766
  {
23765
24767
  "kind": "component",
@@ -23790,7 +24792,7 @@
23790
24792
  },
23791
24793
  {
23792
24794
  "guideId": "layer-selection",
23793
- "selection": 26,
24795
+ "selection": 31,
23794
24796
  "destinations": [
23795
24797
  {
23796
24798
  "kind": "component",
@@ -23821,7 +24823,7 @@
23821
24823
  },
23822
24824
  {
23823
24825
  "guideId": "layer-selection",
23824
- "selection": 27,
24826
+ "selection": 32,
23825
24827
  "destinations": [
23826
24828
  {
23827
24829
  "kind": "component",
@@ -23852,7 +24854,7 @@
23852
24854
  },
23853
24855
  {
23854
24856
  "guideId": "layer-selection",
23855
- "selection": 28,
24857
+ "selection": 33,
23856
24858
  "destinations": [
23857
24859
  {
23858
24860
  "kind": "component",
@@ -23875,7 +24877,7 @@
23875
24877
  },
23876
24878
  {
23877
24879
  "guideId": "layer-selection",
23878
- "selection": 29,
24880
+ "selection": 34,
23879
24881
  "destinations": [
23880
24882
  {
23881
24883
  "kind": "component",
@@ -23906,22 +24908,7 @@
23906
24908
  },
23907
24909
  {
23908
24910
  "guideId": "layer-selection",
23909
- "selection": 3,
23910
- "destinations": [
23911
- {
23912
- "kind": "native-application",
23913
- "id": "native-quotation"
23914
- },
23915
- {
23916
- "kind": "component",
23917
- "id": "text"
23918
- }
23919
- ],
23920
- "status": "covered"
23921
- },
23922
- {
23923
- "guideId": "layer-selection",
23924
- "selection": 30,
24911
+ "selection": 35,
23925
24912
  "destinations": [
23926
24913
  {
23927
24914
  "kind": "component",
@@ -23948,7 +24935,7 @@
23948
24935
  },
23949
24936
  {
23950
24937
  "guideId": "layer-selection",
23951
- "selection": 31,
24938
+ "selection": 36,
23952
24939
  "destinations": [
23953
24940
  {
23954
24941
  "kind": "component",
@@ -23971,7 +24958,7 @@
23971
24958
  },
23972
24959
  {
23973
24960
  "guideId": "layer-selection",
23974
- "selection": 32,
24961
+ "selection": 37,
23975
24962
  "destinations": [
23976
24963
  {
23977
24964
  "kind": "component",
@@ -23990,7 +24977,7 @@
23990
24977
  },
23991
24978
  {
23992
24979
  "guideId": "layer-selection",
23993
- "selection": 33,
24980
+ "selection": 38,
23994
24981
  "destinations": [
23995
24982
  {
23996
24983
  "kind": "component",
@@ -24017,7 +25004,7 @@
24017
25004
  },
24018
25005
  {
24019
25006
  "guideId": "layer-selection",
24020
- "selection": 34,
25007
+ "selection": 39,
24021
25008
  "destinations": [
24022
25009
  {
24023
25010
  "kind": "component",
@@ -24044,7 +25031,26 @@
24044
25031
  },
24045
25032
  {
24046
25033
  "guideId": "layer-selection",
24047
- "selection": 35,
25034
+ "selection": 4,
25035
+ "destinations": [
25036
+ {
25037
+ "kind": "component",
25038
+ "id": "mark"
25039
+ },
25040
+ {
25041
+ "kind": "component",
25042
+ "id": "highlight"
25043
+ },
25044
+ {
25045
+ "kind": "component",
25046
+ "id": "text"
25047
+ }
25048
+ ],
25049
+ "status": "covered"
25050
+ },
25051
+ {
25052
+ "guideId": "layer-selection",
25053
+ "selection": 40,
24048
25054
  "destinations": [
24049
25055
  {
24050
25056
  "kind": "component",
@@ -24071,7 +25077,7 @@
24071
25077
  },
24072
25078
  {
24073
25079
  "guideId": "layer-selection",
24074
- "selection": 36,
25080
+ "selection": 41,
24075
25081
  "destinations": [
24076
25082
  {
24077
25083
  "kind": "component",
@@ -24106,7 +25112,7 @@
24106
25112
  },
24107
25113
  {
24108
25114
  "guideId": "layer-selection",
24109
- "selection": 37,
25115
+ "selection": 42,
24110
25116
  "destinations": [
24111
25117
  {
24112
25118
  "kind": "component",
@@ -24137,7 +25143,7 @@
24137
25143
  },
24138
25144
  {
24139
25145
  "guideId": "layer-selection",
24140
- "selection": 38,
25146
+ "selection": 43,
24141
25147
  "destinations": [
24142
25148
  {
24143
25149
  "kind": "component",
@@ -24160,7 +25166,7 @@
24160
25166
  },
24161
25167
  {
24162
25168
  "guideId": "layer-selection",
24163
- "selection": 39,
25169
+ "selection": 44,
24164
25170
  "destinations": [
24165
25171
  {
24166
25172
  "kind": "component",
@@ -24179,22 +25185,7 @@
24179
25185
  },
24180
25186
  {
24181
25187
  "guideId": "layer-selection",
24182
- "selection": 4,
24183
- "destinations": [
24184
- {
24185
- "kind": "component",
24186
- "id": "stack"
24187
- },
24188
- {
24189
- "kind": "component",
24190
- "id": "grid"
24191
- }
24192
- ],
24193
- "status": "covered"
24194
- },
24195
- {
24196
- "guideId": "layer-selection",
24197
- "selection": 40,
25188
+ "selection": 45,
24198
25189
  "destinations": [
24199
25190
  {
24200
25191
  "kind": "component",
@@ -24217,7 +25208,7 @@
24217
25208
  },
24218
25209
  {
24219
25210
  "guideId": "layer-selection",
24220
- "selection": 41,
25211
+ "selection": 46,
24221
25212
  "destinations": [
24222
25213
  {
24223
25214
  "kind": "component",
@@ -24252,7 +25243,7 @@
24252
25243
  },
24253
25244
  {
24254
25245
  "guideId": "layer-selection",
24255
- "selection": 42,
25246
+ "selection": 47,
24256
25247
  "destinations": [
24257
25248
  {
24258
25249
  "kind": "component",
@@ -24279,7 +25270,7 @@
24279
25270
  },
24280
25271
  {
24281
25272
  "guideId": "layer-selection",
24282
- "selection": 43,
25273
+ "selection": 48,
24283
25274
  "destinations": [
24284
25275
  {
24285
25276
  "kind": "component",
@@ -24302,7 +25293,7 @@
24302
25293
  },
24303
25294
  {
24304
25295
  "guideId": "layer-selection",
24305
- "selection": 44,
25296
+ "selection": 49,
24306
25297
  "destinations": [
24307
25298
  {
24308
25299
  "kind": "component",
@@ -24329,7 +25320,26 @@
24329
25320
  },
24330
25321
  {
24331
25322
  "guideId": "layer-selection",
24332
- "selection": 45,
25323
+ "selection": 5,
25324
+ "destinations": [
25325
+ {
25326
+ "kind": "component",
25327
+ "id": "highlight"
25328
+ },
25329
+ {
25330
+ "kind": "component",
25331
+ "id": "mark"
25332
+ },
25333
+ {
25334
+ "kind": "component",
25335
+ "id": "text"
25336
+ }
25337
+ ],
25338
+ "status": "covered"
25339
+ },
25340
+ {
25341
+ "guideId": "layer-selection",
25342
+ "selection": 50,
24333
25343
  "destinations": [
24334
25344
  {
24335
25345
  "kind": "component",
@@ -24348,7 +25358,7 @@
24348
25358
  },
24349
25359
  {
24350
25360
  "guideId": "layer-selection",
24351
- "selection": 46,
25361
+ "selection": 51,
24352
25362
  "destinations": [
24353
25363
  {
24354
25364
  "kind": "component",
@@ -24371,7 +25381,7 @@
24371
25381
  },
24372
25382
  {
24373
25383
  "guideId": "layer-selection",
24374
- "selection": 47,
25384
+ "selection": 52,
24375
25385
  "destinations": [
24376
25386
  {
24377
25387
  "kind": "component",
@@ -24386,7 +25396,7 @@
24386
25396
  },
24387
25397
  {
24388
25398
  "guideId": "layer-selection",
24389
- "selection": 48,
25399
+ "selection": 53,
24390
25400
  "destinations": [
24391
25401
  {
24392
25402
  "kind": "component",
@@ -24401,7 +25411,7 @@
24401
25411
  },
24402
25412
  {
24403
25413
  "guideId": "layer-selection",
24404
- "selection": 49,
25414
+ "selection": 54,
24405
25415
  "destinations": [
24406
25416
  {
24407
25417
  "kind": "component",
@@ -24424,26 +25434,7 @@
24424
25434
  },
24425
25435
  {
24426
25436
  "guideId": "layer-selection",
24427
- "selection": 5,
24428
- "destinations": [
24429
- {
24430
- "kind": "component",
24431
- "id": "container"
24432
- },
24433
- {
24434
- "kind": "component",
24435
- "id": "surface"
24436
- },
24437
- {
24438
- "kind": "component",
24439
- "id": "card"
24440
- }
24441
- ],
24442
- "status": "covered"
24443
- },
24444
- {
24445
- "guideId": "layer-selection",
24446
- "selection": 50,
25437
+ "selection": 55,
24447
25438
  "destinations": [
24448
25439
  {
24449
25440
  "kind": "component",
@@ -24466,7 +25457,7 @@
24466
25457
  },
24467
25458
  {
24468
25459
  "guideId": "layer-selection",
24469
- "selection": 51,
25460
+ "selection": 56,
24470
25461
  "destinations": [
24471
25462
  {
24472
25463
  "kind": "component",
@@ -24485,7 +25476,7 @@
24485
25476
  },
24486
25477
  {
24487
25478
  "guideId": "layer-selection",
24488
- "selection": 52,
25479
+ "selection": 57,
24489
25480
  "destinations": [
24490
25481
  {
24491
25482
  "kind": "component",
@@ -24512,7 +25503,35 @@
24512
25503
  "destinations": [
24513
25504
  {
24514
25505
  "kind": "component",
24515
- "id": "app-bar"
25506
+ "id": "prose"
25507
+ },
25508
+ {
25509
+ "kind": "component",
25510
+ "id": "text"
25511
+ },
25512
+ {
25513
+ "kind": "component",
25514
+ "id": "link"
25515
+ },
25516
+ {
25517
+ "kind": "component",
25518
+ "id": "list"
25519
+ },
25520
+ {
25521
+ "kind": "component",
25522
+ "id": "blockquote"
25523
+ },
25524
+ {
25525
+ "kind": "component",
25526
+ "id": "code-block"
25527
+ },
25528
+ {
25529
+ "kind": "component",
25530
+ "id": "table"
25531
+ },
25532
+ {
25533
+ "kind": "component",
25534
+ "id": "image"
24516
25535
  }
24517
25536
  ],
24518
25537
  "status": "covered"
@@ -24523,11 +25542,15 @@
24523
25542
  "destinations": [
24524
25543
  {
24525
25544
  "kind": "component",
24526
- "id": "show"
25545
+ "id": "kbd"
24527
25546
  },
24528
25547
  {
24529
25548
  "kind": "component",
24530
- "id": "hide"
25549
+ "id": "text"
25550
+ },
25551
+ {
25552
+ "kind": "component",
25553
+ "id": "code"
24531
25554
  }
24532
25555
  ],
24533
25556
  "status": "covered"
@@ -24538,7 +25561,11 @@
24538
25561
  "destinations": [
24539
25562
  {
24540
25563
  "kind": "component",
24541
- "id": "image"
25564
+ "id": "blockquote"
25565
+ },
25566
+ {
25567
+ "kind": "component",
25568
+ "id": "text"
24542
25569
  }
24543
25570
  ],
24544
25571
  "status": "covered"
@@ -24549,31 +25576,16 @@
24549
25576
  "destinations": [
24550
25577
  {
24551
25578
  "kind": "component",
24552
- "id": "aspect-ratio"
24553
- },
24554
- {
24555
- "kind": "component",
24556
- "id": "image"
24557
- },
24558
- {
24559
- "kind": "component",
24560
- "id": "surface"
25579
+ "id": "stack"
24561
25580
  },
24562
25581
  {
24563
25582
  "kind": "component",
24564
- "id": "skeleton"
25583
+ "id": "grid"
24565
25584
  }
24566
25585
  ],
24567
25586
  "status": "covered"
24568
25587
  }
24569
25588
  ],
24570
- "nativeApplicationDestinations": [
24571
- {
24572
- "id": "native-quotation",
24573
- "kind": "native",
24574
- "reason": "Native figure, blockquote, and figcaption own extended quotation semantics when Brick adds no dedicated owner.",
24575
- "status": "covered"
24576
- }
24577
- ],
25589
+ "nativeApplicationDestinations": [],
24578
25590
  "failures": []
24579
25591
  }