@flowstack-ui/brick 0.1.11 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) 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/color-picker.json +34 -18
  7. package/dist/agents/color-picker.md +18 -13
  8. package/dist/agents/color-swatch.json +17 -5
  9. package/dist/agents/color-swatch.md +10 -5
  10. package/dist/agents/coverage.json +5095 -3374
  11. package/dist/agents/em.json +57 -0
  12. package/dist/agents/em.md +39 -0
  13. package/dist/agents/highlight.json +73 -0
  14. package/dist/agents/highlight.md +43 -0
  15. package/dist/agents/interface-composition.json +14 -7
  16. package/dist/agents/interface-composition.md +5 -2
  17. package/dist/agents/kbd.json +62 -0
  18. package/dist/agents/kbd.md +40 -0
  19. package/dist/agents/layer-selection.json +125 -5
  20. package/dist/agents/layer-selection.md +12 -2
  21. package/dist/agents/manifest.json +37 -1
  22. package/dist/agents/mark.json +56 -0
  23. package/dist/agents/mark.md +38 -0
  24. package/dist/agents/prose.json +82 -0
  25. package/dist/agents/prose.md +50 -0
  26. package/dist/blockquote.d.ts +2 -0
  27. package/dist/blockquote.d.ts.map +1 -0
  28. package/dist/blockquote.js +2 -0
  29. package/dist/blockquote.js.map +1 -0
  30. package/dist/components/blockquote/Blockquote.d.ts +33 -0
  31. package/dist/components/blockquote/Blockquote.d.ts.map +1 -0
  32. package/dist/components/blockquote/Blockquote.js +36 -0
  33. package/dist/components/blockquote/Blockquote.js.map +1 -0
  34. package/dist/components/blockquote/index.d.ts +2 -0
  35. package/dist/components/blockquote/index.d.ts.map +1 -0
  36. package/dist/components/blockquote/index.js +2 -0
  37. package/dist/components/blockquote/index.js.map +1 -0
  38. package/dist/components/code-block/CodeBlock.d.ts +36 -0
  39. package/dist/components/code-block/CodeBlock.d.ts.map +1 -1
  40. package/dist/components/code-block/CodeBlock.js +76 -12
  41. package/dist/components/code-block/CodeBlock.js.map +1 -1
  42. package/dist/components/code-block/context.d.ts +2 -0
  43. package/dist/components/code-block/context.d.ts.map +1 -1
  44. package/dist/components/code-block/context.js.map +1 -1
  45. package/dist/components/code-block/index.d.ts +1 -1
  46. package/dist/components/code-block/index.d.ts.map +1 -1
  47. package/dist/components/code-block/index.js +1 -1
  48. package/dist/components/code-block/index.js.map +1 -1
  49. package/dist/components/color-picker/ColorPicker.d.ts +83 -24
  50. package/dist/components/color-picker/ColorPicker.d.ts.map +1 -1
  51. package/dist/components/color-picker/ColorPicker.js +102 -10
  52. package/dist/components/color-picker/ColorPicker.js.map +1 -1
  53. package/dist/components/color-picker/index.d.ts +1 -1
  54. package/dist/components/color-picker/index.d.ts.map +1 -1
  55. package/dist/components/color-picker/index.js +1 -1
  56. package/dist/components/color-picker/index.js.map +1 -1
  57. package/dist/components/color-swatch/ColorSwatch.d.ts +3 -0
  58. package/dist/components/color-swatch/ColorSwatch.d.ts.map +1 -1
  59. package/dist/components/color-swatch/ColorSwatch.js +4 -4
  60. package/dist/components/color-swatch/ColorSwatch.js.map +1 -1
  61. package/dist/components/color-swatch/index.d.ts +1 -1
  62. package/dist/components/color-swatch/index.d.ts.map +1 -1
  63. package/dist/components/color-swatch/index.js.map +1 -1
  64. package/dist/components/em/Em.d.ts +9 -0
  65. package/dist/components/em/Em.d.ts.map +1 -0
  66. package/dist/components/em/Em.js +10 -0
  67. package/dist/components/em/Em.js.map +1 -0
  68. package/dist/components/em/index.d.ts +2 -0
  69. package/dist/components/em/index.d.ts.map +1 -0
  70. package/dist/components/em/index.js +2 -0
  71. package/dist/components/em/index.js.map +1 -0
  72. package/dist/components/highlight/Highlight.d.ts +9 -0
  73. package/dist/components/highlight/Highlight.d.ts.map +1 -0
  74. package/dist/components/highlight/Highlight.js +10 -0
  75. package/dist/components/highlight/Highlight.js.map +1 -0
  76. package/dist/components/highlight/index.d.ts +2 -0
  77. package/dist/components/highlight/index.d.ts.map +1 -0
  78. package/dist/components/highlight/index.js +2 -0
  79. package/dist/components/highlight/index.js.map +1 -0
  80. package/dist/components/kbd/Kbd.d.ts +13 -0
  81. package/dist/components/kbd/Kbd.d.ts.map +1 -0
  82. package/dist/components/kbd/Kbd.js +8 -0
  83. package/dist/components/kbd/Kbd.js.map +1 -0
  84. package/dist/components/kbd/index.d.ts +2 -0
  85. package/dist/components/kbd/index.d.ts.map +1 -0
  86. package/dist/components/kbd/index.js +2 -0
  87. package/dist/components/kbd/index.js.map +1 -0
  88. package/dist/components/mark/Mark.d.ts +13 -0
  89. package/dist/components/mark/Mark.d.ts.map +1 -0
  90. package/dist/components/mark/Mark.js +8 -0
  91. package/dist/components/mark/Mark.js.map +1 -0
  92. package/dist/components/mark/index.d.ts +2 -0
  93. package/dist/components/mark/index.d.ts.map +1 -0
  94. package/dist/components/mark/index.js +2 -0
  95. package/dist/components/mark/index.js.map +1 -0
  96. package/dist/components/prose/Prose.d.ts +12 -0
  97. package/dist/components/prose/Prose.d.ts.map +1 -0
  98. package/dist/components/prose/Prose.js +19 -0
  99. package/dist/components/prose/Prose.js.map +1 -0
  100. package/dist/components/prose/index.d.ts +2 -0
  101. package/dist/components/prose/index.d.ts.map +1 -0
  102. package/dist/components/prose/index.js +2 -0
  103. package/dist/components/prose/index.js.map +1 -0
  104. package/dist/em.d.ts +2 -0
  105. package/dist/em.d.ts.map +1 -0
  106. package/dist/em.js +2 -0
  107. package/dist/em.js.map +1 -0
  108. package/dist/highlight.d.ts +2 -0
  109. package/dist/highlight.d.ts.map +1 -0
  110. package/dist/highlight.js +2 -0
  111. package/dist/highlight.js.map +1 -0
  112. package/dist/index.d.ts +9 -3
  113. package/dist/index.d.ts.map +1 -1
  114. package/dist/index.js +8 -2
  115. package/dist/index.js.map +1 -1
  116. package/dist/kbd.d.ts +2 -0
  117. package/dist/kbd.d.ts.map +1 -0
  118. package/dist/kbd.js +2 -0
  119. package/dist/kbd.js.map +1 -0
  120. package/dist/mark.d.ts +2 -0
  121. package/dist/mark.d.ts.map +1 -0
  122. package/dist/mark.js +2 -0
  123. package/dist/mark.js.map +1 -0
  124. package/dist/prose.d.ts +2 -0
  125. package/dist/prose.d.ts.map +1 -0
  126. package/dist/prose.js +2 -0
  127. package/dist/prose.js.map +1 -0
  128. package/dist/styles/blockquote.css +2 -0
  129. package/dist/styles/blockquote.css.map +1 -0
  130. package/dist/styles/checkbox-group.css +1 -1
  131. package/dist/styles/checkbox-group.css.map +1 -1
  132. package/dist/styles/checkbox.css +1 -1
  133. package/dist/styles/checkbox.css.map +1 -1
  134. package/dist/styles/code-block.css +1 -1
  135. package/dist/styles/code-block.css.map +1 -1
  136. package/dist/styles/color-picker.css +1 -1
  137. package/dist/styles/color-picker.css.map +1 -1
  138. package/dist/styles/color-swatch.css +1 -1
  139. package/dist/styles/color-swatch.css.map +1 -1
  140. package/dist/styles/em.css +2 -0
  141. package/dist/styles/em.css.map +1 -0
  142. package/dist/styles/highlight.css +2 -0
  143. package/dist/styles/highlight.css.map +1 -0
  144. package/dist/styles/kbd.css +2 -0
  145. package/dist/styles/kbd.css.map +1 -0
  146. package/dist/styles/mark.css +2 -0
  147. package/dist/styles/mark.css.map +1 -0
  148. package/dist/styles/popover.css.map +1 -1
  149. package/dist/styles/prose.css +2 -0
  150. package/dist/styles/prose.css.map +1 -0
  151. package/dist/styles/segment-group.css +1 -1
  152. package/dist/styles/segment-group.css.map +1 -1
  153. package/dist/styles/sidebar.css +1 -1
  154. package/dist/styles/sidebar.css.map +1 -1
  155. package/dist/styles/slider.css.map +1 -1
  156. package/dist/styles.css +1 -1
  157. package/dist/styles.css.map +1 -1
  158. package/dist/theme-contract.json +1617 -162
  159. package/package.json +38 -4
@@ -3,7 +3,7 @@
3
3
  "contractVersion": 4,
4
4
  "package": {
5
5
  "name": "@flowstack-ui/brick",
6
- "version": "0.1.11"
6
+ "version": "0.2.0"
7
7
  },
8
8
  "sources": {
9
9
  "tokens": "src/styles/tokens.tokens.json",
@@ -1111,6 +1111,32 @@
1111
1111
  "data-slot"
1112
1112
  ]
1113
1113
  },
1114
+ {
1115
+ "id": "blockquote",
1116
+ "source": "src/components/blockquote/Blockquote.tsx",
1117
+ "css": "src/components/blockquote/blockquote.css",
1118
+ "recipes": {
1119
+ "BlockquoteVariant": [
1120
+ "accent",
1121
+ "surface",
1122
+ "plain"
1123
+ ],
1124
+ "BlockquoteAlign": [
1125
+ "start",
1126
+ "center",
1127
+ "end"
1128
+ ]
1129
+ },
1130
+ "defaults": {
1131
+ "variant": "accent",
1132
+ "align": "start"
1133
+ },
1134
+ "states": [
1135
+ "data-align",
1136
+ "data-slot",
1137
+ "data-variant"
1138
+ ]
1139
+ },
1114
1140
  {
1115
1141
  "id": "bottom-navigation",
1116
1142
  "source": "src/components/bottom-navigation/BottomNavigation.tsx",
@@ -1459,6 +1485,10 @@
1459
1485
  "CodeBlockWrap": [
1460
1486
  "scroll",
1461
1487
  "wrap"
1488
+ ],
1489
+ "CodeBlockLineChange": [
1490
+ "added",
1491
+ "removed"
1462
1492
  ]
1463
1493
  },
1464
1494
  "defaults": {
@@ -1468,7 +1498,12 @@
1468
1498
  "focusable": true
1469
1499
  },
1470
1500
  "states": [
1501
+ "data-change",
1502
+ "data-focused",
1503
+ "data-highlighted",
1471
1504
  "data-language",
1505
+ "data-line-number",
1506
+ "data-max-lines",
1472
1507
  "data-size",
1473
1508
  "data-slot",
1474
1509
  "data-variant",
@@ -1530,6 +1565,11 @@
1530
1565
  "source": "src/components/color-swatch/ColorSwatch.tsx",
1531
1566
  "css": "src/components/color-swatch/color-swatch.css",
1532
1567
  "recipes": {
1568
+ "ColorSwatchShape": [
1569
+ "sharp",
1570
+ "rounded",
1571
+ "circle"
1572
+ ],
1533
1573
  "ColorSwatchSize": [
1534
1574
  "sm",
1535
1575
  "md",
@@ -1537,9 +1577,11 @@
1537
1577
  ]
1538
1578
  },
1539
1579
  "defaults": {
1540
- "size": "md"
1580
+ "size": "md",
1581
+ "shape": "rounded"
1541
1582
  },
1542
1583
  "states": [
1584
+ "data-shape",
1543
1585
  "data-size",
1544
1586
  "data-slot"
1545
1587
  ]
@@ -1857,6 +1899,18 @@
1857
1899
  "data-size"
1858
1900
  ]
1859
1901
  },
1902
+ {
1903
+ "id": "em",
1904
+ "source": "src/components/em/Em.tsx",
1905
+ "css": "src/components/em/em.css",
1906
+ "recipes": {},
1907
+ "defaults": {
1908
+ "slot": "em"
1909
+ },
1910
+ "states": [
1911
+ "data-slot"
1912
+ ]
1913
+ },
1860
1914
  {
1861
1915
  "id": "feed",
1862
1916
  "source": "src/components/feed/Feed.tsx",
@@ -2125,6 +2179,31 @@
2125
2179
  "data-slot"
2126
2180
  ]
2127
2181
  },
2182
+ {
2183
+ "id": "highlight",
2184
+ "source": "src/components/highlight/Highlight.tsx",
2185
+ "css": "src/components/highlight/highlight.css",
2186
+ "recipes": {
2187
+ "HighlightVariant": [
2188
+ "subtle",
2189
+ "solid",
2190
+ "underline"
2191
+ ],
2192
+ "HighlightTone": [
2193
+ "accent",
2194
+ "neutral"
2195
+ ]
2196
+ },
2197
+ "defaults": {
2198
+ "variant": "subtle",
2199
+ "tone": "accent"
2200
+ },
2201
+ "states": [
2202
+ "data-slot",
2203
+ "data-tone",
2204
+ "data-variant"
2205
+ ]
2206
+ },
2128
2207
  {
2129
2208
  "id": "hover-card",
2130
2209
  "source": "src/components/hover-card/HoverCard.tsx",
@@ -2299,6 +2378,34 @@
2299
2378
  "data-variant"
2300
2379
  ]
2301
2380
  },
2381
+ {
2382
+ "id": "kbd",
2383
+ "source": "src/components/kbd/Kbd.tsx",
2384
+ "css": "src/components/kbd/kbd.css",
2385
+ "recipes": {
2386
+ "KbdVariant": [
2387
+ "raised",
2388
+ "outline",
2389
+ "subtle",
2390
+ "plain"
2391
+ ],
2392
+ "KbdSize": [
2393
+ "sm",
2394
+ "md",
2395
+ "lg"
2396
+ ]
2397
+ },
2398
+ "defaults": {
2399
+ "variant": "raised",
2400
+ "size": "md",
2401
+ "slot": "kbd"
2402
+ },
2403
+ "states": [
2404
+ "data-size",
2405
+ "data-slot",
2406
+ "data-variant"
2407
+ ]
2408
+ },
2302
2409
  {
2303
2410
  "id": "link",
2304
2411
  "source": "src/components/link/Link.tsx",
@@ -2407,6 +2514,32 @@
2407
2514
  "data-variant"
2408
2515
  ]
2409
2516
  },
2517
+ {
2518
+ "id": "mark",
2519
+ "source": "src/components/mark/Mark.tsx",
2520
+ "css": "src/components/mark/mark.css",
2521
+ "recipes": {
2522
+ "MarkVariant": [
2523
+ "subtle",
2524
+ "solid",
2525
+ "plain"
2526
+ ],
2527
+ "MarkTone": [
2528
+ "accent",
2529
+ "neutral"
2530
+ ]
2531
+ },
2532
+ "defaults": {
2533
+ "variant": "subtle",
2534
+ "tone": "accent",
2535
+ "slot": "mark"
2536
+ },
2537
+ "states": [
2538
+ "data-slot",
2539
+ "data-tone",
2540
+ "data-variant"
2541
+ ]
2542
+ },
2410
2543
  {
2411
2544
  "id": "menubar",
2412
2545
  "source": "src/components/menubar/Menubar.tsx",
@@ -2806,6 +2939,40 @@
2806
2939
  "data-tone"
2807
2940
  ]
2808
2941
  },
2942
+ {
2943
+ "id": "prose",
2944
+ "source": "src/components/prose/Prose.tsx",
2945
+ "css": "src/components/prose/prose.css",
2946
+ "recipes": {
2947
+ "ProseElement": [
2948
+ "div",
2949
+ "article",
2950
+ "section"
2951
+ ],
2952
+ "ProseSize": [
2953
+ "sm",
2954
+ "md",
2955
+ "lg"
2956
+ ],
2957
+ "ProseMeasure": [
2958
+ "narrow",
2959
+ "default",
2960
+ "wide",
2961
+ "none"
2962
+ ]
2963
+ },
2964
+ "defaults": {
2965
+ "as": "div",
2966
+ "size": "md",
2967
+ "measure": "default",
2968
+ "slot": "prose"
2969
+ },
2970
+ "states": [
2971
+ "data-measure",
2972
+ "data-size",
2973
+ "data-slot"
2974
+ ]
2975
+ },
2809
2976
  {
2810
2977
  "id": "radio-group",
2811
2978
  "source": "src/components/radio-group/RadioGroup.tsx",
@@ -3874,6 +4041,84 @@
3874
4041
  ],
3875
4042
  "runtimeAssigned": false
3876
4043
  },
4044
+ {
4045
+ "name": "--_brick-prose-h1-font-size",
4046
+ "classification": "internal",
4047
+ "scope": "implementation",
4048
+ "owner": null,
4049
+ "type": null,
4050
+ "fallback": null,
4051
+ "supportedRange": null,
4052
+ "sources": [
4053
+ "src/components/prose/prose.css"
4054
+ ],
4055
+ "runtimeAssigned": false
4056
+ },
4057
+ {
4058
+ "name": "--_brick-prose-h1-line-height",
4059
+ "classification": "internal",
4060
+ "scope": "implementation",
4061
+ "owner": null,
4062
+ "type": null,
4063
+ "fallback": null,
4064
+ "supportedRange": null,
4065
+ "sources": [
4066
+ "src/components/prose/prose.css"
4067
+ ],
4068
+ "runtimeAssigned": false
4069
+ },
4070
+ {
4071
+ "name": "--_brick-prose-h2-font-size",
4072
+ "classification": "internal",
4073
+ "scope": "implementation",
4074
+ "owner": null,
4075
+ "type": null,
4076
+ "fallback": null,
4077
+ "supportedRange": null,
4078
+ "sources": [
4079
+ "src/components/prose/prose.css"
4080
+ ],
4081
+ "runtimeAssigned": false
4082
+ },
4083
+ {
4084
+ "name": "--_brick-prose-h2-line-height",
4085
+ "classification": "internal",
4086
+ "scope": "implementation",
4087
+ "owner": null,
4088
+ "type": null,
4089
+ "fallback": null,
4090
+ "supportedRange": null,
4091
+ "sources": [
4092
+ "src/components/prose/prose.css"
4093
+ ],
4094
+ "runtimeAssigned": false
4095
+ },
4096
+ {
4097
+ "name": "--_brick-prose-h3-font-size",
4098
+ "classification": "internal",
4099
+ "scope": "implementation",
4100
+ "owner": null,
4101
+ "type": null,
4102
+ "fallback": null,
4103
+ "supportedRange": null,
4104
+ "sources": [
4105
+ "src/components/prose/prose.css"
4106
+ ],
4107
+ "runtimeAssigned": false
4108
+ },
4109
+ {
4110
+ "name": "--_brick-prose-h3-line-height",
4111
+ "classification": "internal",
4112
+ "scope": "implementation",
4113
+ "owner": null,
4114
+ "type": null,
4115
+ "fallback": null,
4116
+ "supportedRange": null,
4117
+ "sources": [
4118
+ "src/components/prose/prose.css"
4119
+ ],
4120
+ "runtimeAssigned": false
4121
+ },
3877
4122
  {
3878
4123
  "name": "--brick-accordion-background",
3879
4124
  "classification": "optional-extension",
@@ -5442,121 +5687,433 @@
5442
5687
  "runtimeAssigned": false
5443
5688
  },
5444
5689
  {
5445
- "name": "--brick-border-focus-offset",
5446
- "classification": "derived",
5447
- "type": "dimension",
5448
- "description": "Brick semantic dimension value for border / focus offset.",
5449
- "appearance": "invariant",
5450
- "defaults": {
5451
- "light": "0.25rem",
5452
- "dark": "0.25rem"
5453
- },
5454
- "sources": [
5455
- "src/styles/tokens.tokens.json"
5456
- ],
5457
- "tokenPaths": {
5458
- "light": "semantic.light.border.focus-offset",
5459
- "dark": "semantic.dark.border.focus-offset"
5460
- }
5461
- },
5462
- {
5463
- "name": "--brick-border-focus-width",
5464
- "classification": "derived",
5465
- "type": "dimension",
5466
- "description": "Brick semantic dimension value for border / focus width.",
5467
- "appearance": "invariant",
5468
- "defaults": {
5469
- "light": "2px",
5470
- "dark": "2px"
5471
- },
5472
- "sources": [
5473
- "src/styles/tokens.tokens.json"
5474
- ],
5475
- "tokenPaths": {
5476
- "light": "semantic.light.border.focus-width",
5477
- "dark": "semantic.dark.border.focus-width"
5478
- }
5479
- },
5480
- {
5481
- "name": "--brick-border-width",
5482
- "classification": "derived",
5483
- "type": "dimension",
5484
- "description": "Brick semantic dimension value for border / width.",
5485
- "appearance": "invariant",
5486
- "defaults": {
5487
- "light": "1px",
5488
- "dark": "1px"
5489
- },
5490
- "sources": [
5491
- "src/styles/tokens.tokens.json"
5492
- ],
5493
- "tokenPaths": {
5494
- "light": "semantic.light.border.width",
5495
- "dark": "semantic.dark.border.width"
5496
- }
5497
- },
5498
- {
5499
- "name": "--brick-bottom-navigation-background",
5690
+ "name": "--brick-blockquote-accent",
5500
5691
  "classification": "optional-extension",
5501
5692
  "scope": "component-instance",
5502
- "owner": "bottom-navigation",
5693
+ "owner": "blockquote",
5503
5694
  "type": null,
5504
5695
  "fallback": null,
5505
5696
  "supportedRange": null,
5506
5697
  "sources": [
5507
- "src/components/bottom-navigation/bottom-navigation.css"
5698
+ "src/components/blockquote/blockquote.css"
5508
5699
  ],
5509
5700
  "runtimeAssigned": false
5510
5701
  },
5511
5702
  {
5512
- "name": "--brick-bottom-navigation-blurred-background",
5703
+ "name": "--brick-blockquote-background",
5513
5704
  "classification": "optional-extension",
5514
5705
  "scope": "component-instance",
5515
- "owner": "bottom-navigation",
5706
+ "owner": "blockquote",
5516
5707
  "type": null,
5517
5708
  "fallback": null,
5518
5709
  "supportedRange": null,
5519
5710
  "sources": [
5520
- "src/components/bottom-navigation/bottom-navigation.css"
5711
+ "src/components/blockquote/blockquote.css"
5521
5712
  ],
5522
5713
  "runtimeAssigned": false
5523
5714
  },
5524
5715
  {
5525
- "name": "--brick-bottom-navigation-border-color",
5716
+ "name": "--brick-blockquote-border-color",
5526
5717
  "classification": "optional-extension",
5527
5718
  "scope": "component-instance",
5528
- "owner": "bottom-navigation",
5719
+ "owner": "blockquote",
5529
5720
  "type": null,
5530
5721
  "fallback": null,
5531
5722
  "supportedRange": null,
5532
5723
  "sources": [
5533
- "src/components/bottom-navigation/bottom-navigation.css"
5724
+ "src/components/blockquote/blockquote.css"
5534
5725
  ],
5535
5726
  "runtimeAssigned": false
5536
5727
  },
5537
5728
  {
5538
- "name": "--brick-bottom-navigation-focus-ring",
5729
+ "name": "--brick-blockquote-border-width",
5539
5730
  "classification": "optional-extension",
5540
5731
  "scope": "component-instance",
5541
- "owner": "bottom-navigation",
5732
+ "owner": "blockquote",
5542
5733
  "type": null,
5543
5734
  "fallback": null,
5544
5735
  "supportedRange": null,
5545
5736
  "sources": [
5546
- "src/components/bottom-navigation/bottom-navigation.css"
5737
+ "src/components/blockquote/blockquote.css"
5547
5738
  ],
5548
5739
  "runtimeAssigned": false
5549
5740
  },
5550
5741
  {
5551
- "name": "--brick-bottom-navigation-foreground",
5742
+ "name": "--brick-blockquote-caption-font-family",
5552
5743
  "classification": "optional-extension",
5553
5744
  "scope": "component-instance",
5554
- "owner": "bottom-navigation",
5745
+ "owner": "blockquote",
5555
5746
  "type": null,
5556
5747
  "fallback": null,
5557
5748
  "supportedRange": null,
5558
5749
  "sources": [
5559
- "src/components/bottom-navigation/bottom-navigation.css"
5750
+ "src/components/blockquote/blockquote.css"
5751
+ ],
5752
+ "runtimeAssigned": false
5753
+ },
5754
+ {
5755
+ "name": "--brick-blockquote-caption-font-size",
5756
+ "classification": "optional-extension",
5757
+ "scope": "component-instance",
5758
+ "owner": "blockquote",
5759
+ "type": null,
5760
+ "fallback": null,
5761
+ "supportedRange": null,
5762
+ "sources": [
5763
+ "src/components/blockquote/blockquote.css"
5764
+ ],
5765
+ "runtimeAssigned": false
5766
+ },
5767
+ {
5768
+ "name": "--brick-blockquote-caption-font-weight",
5769
+ "classification": "optional-extension",
5770
+ "scope": "component-instance",
5771
+ "owner": "blockquote",
5772
+ "type": null,
5773
+ "fallback": null,
5774
+ "supportedRange": null,
5775
+ "sources": [
5776
+ "src/components/blockquote/blockquote.css"
5777
+ ],
5778
+ "runtimeAssigned": false
5779
+ },
5780
+ {
5781
+ "name": "--brick-blockquote-caption-letter-spacing",
5782
+ "classification": "optional-extension",
5783
+ "scope": "component-instance",
5784
+ "owner": "blockquote",
5785
+ "type": null,
5786
+ "fallback": null,
5787
+ "supportedRange": null,
5788
+ "sources": [
5789
+ "src/components/blockquote/blockquote.css"
5790
+ ],
5791
+ "runtimeAssigned": false
5792
+ },
5793
+ {
5794
+ "name": "--brick-blockquote-caption-line-height",
5795
+ "classification": "optional-extension",
5796
+ "scope": "component-instance",
5797
+ "owner": "blockquote",
5798
+ "type": null,
5799
+ "fallback": null,
5800
+ "supportedRange": null,
5801
+ "sources": [
5802
+ "src/components/blockquote/blockquote.css"
5803
+ ],
5804
+ "runtimeAssigned": false
5805
+ },
5806
+ {
5807
+ "name": "--brick-blockquote-content-font-family",
5808
+ "classification": "optional-extension",
5809
+ "scope": "component-instance",
5810
+ "owner": "blockquote",
5811
+ "type": null,
5812
+ "fallback": null,
5813
+ "supportedRange": null,
5814
+ "sources": [
5815
+ "src/components/blockquote/blockquote.css"
5816
+ ],
5817
+ "runtimeAssigned": false
5818
+ },
5819
+ {
5820
+ "name": "--brick-blockquote-content-font-size",
5821
+ "classification": "optional-extension",
5822
+ "scope": "component-instance",
5823
+ "owner": "blockquote",
5824
+ "type": null,
5825
+ "fallback": null,
5826
+ "supportedRange": null,
5827
+ "sources": [
5828
+ "src/components/blockquote/blockquote.css"
5829
+ ],
5830
+ "runtimeAssigned": false
5831
+ },
5832
+ {
5833
+ "name": "--brick-blockquote-content-font-weight",
5834
+ "classification": "optional-extension",
5835
+ "scope": "component-instance",
5836
+ "owner": "blockquote",
5837
+ "type": null,
5838
+ "fallback": null,
5839
+ "supportedRange": null,
5840
+ "sources": [
5841
+ "src/components/blockquote/blockquote.css"
5842
+ ],
5843
+ "runtimeAssigned": false
5844
+ },
5845
+ {
5846
+ "name": "--brick-blockquote-content-letter-spacing",
5847
+ "classification": "optional-extension",
5848
+ "scope": "component-instance",
5849
+ "owner": "blockquote",
5850
+ "type": null,
5851
+ "fallback": null,
5852
+ "supportedRange": null,
5853
+ "sources": [
5854
+ "src/components/blockquote/blockquote.css"
5855
+ ],
5856
+ "runtimeAssigned": false
5857
+ },
5858
+ {
5859
+ "name": "--brick-blockquote-content-line-height",
5860
+ "classification": "optional-extension",
5861
+ "scope": "component-instance",
5862
+ "owner": "blockquote",
5863
+ "type": null,
5864
+ "fallback": null,
5865
+ "supportedRange": null,
5866
+ "sources": [
5867
+ "src/components/blockquote/blockquote.css"
5868
+ ],
5869
+ "runtimeAssigned": false
5870
+ },
5871
+ {
5872
+ "name": "--brick-blockquote-foreground",
5873
+ "classification": "optional-extension",
5874
+ "scope": "component-instance",
5875
+ "owner": "blockquote",
5876
+ "type": null,
5877
+ "fallback": null,
5878
+ "supportedRange": null,
5879
+ "sources": [
5880
+ "src/components/blockquote/blockquote.css"
5881
+ ],
5882
+ "runtimeAssigned": false
5883
+ },
5884
+ {
5885
+ "name": "--brick-blockquote-gap",
5886
+ "classification": "optional-extension",
5887
+ "scope": "component-instance",
5888
+ "owner": "blockquote",
5889
+ "type": null,
5890
+ "fallback": null,
5891
+ "supportedRange": null,
5892
+ "sources": [
5893
+ "src/components/blockquote/blockquote.css"
5894
+ ],
5895
+ "runtimeAssigned": false
5896
+ },
5897
+ {
5898
+ "name": "--brick-blockquote-icon-font-family",
5899
+ "classification": "optional-extension",
5900
+ "scope": "component-instance",
5901
+ "owner": "blockquote",
5902
+ "type": null,
5903
+ "fallback": null,
5904
+ "supportedRange": null,
5905
+ "sources": [
5906
+ "src/components/blockquote/blockquote.css"
5907
+ ],
5908
+ "runtimeAssigned": false
5909
+ },
5910
+ {
5911
+ "name": "--brick-blockquote-icon-font-weight",
5912
+ "classification": "optional-extension",
5913
+ "scope": "component-instance",
5914
+ "owner": "blockquote",
5915
+ "type": null,
5916
+ "fallback": null,
5917
+ "supportedRange": null,
5918
+ "sources": [
5919
+ "src/components/blockquote/blockquote.css"
5920
+ ],
5921
+ "runtimeAssigned": false
5922
+ },
5923
+ {
5924
+ "name": "--brick-blockquote-icon-line-height",
5925
+ "classification": "optional-extension",
5926
+ "scope": "component-instance",
5927
+ "owner": "blockquote",
5928
+ "type": null,
5929
+ "fallback": null,
5930
+ "supportedRange": null,
5931
+ "sources": [
5932
+ "src/components/blockquote/blockquote.css"
5933
+ ],
5934
+ "runtimeAssigned": false
5935
+ },
5936
+ {
5937
+ "name": "--brick-blockquote-icon-size",
5938
+ "classification": "optional-extension",
5939
+ "scope": "component-instance",
5940
+ "owner": "blockquote",
5941
+ "type": null,
5942
+ "fallback": null,
5943
+ "supportedRange": null,
5944
+ "sources": [
5945
+ "src/components/blockquote/blockquote.css"
5946
+ ],
5947
+ "runtimeAssigned": false
5948
+ },
5949
+ {
5950
+ "name": "--brick-blockquote-muted-foreground",
5951
+ "classification": "optional-extension",
5952
+ "scope": "component-instance",
5953
+ "owner": "blockquote",
5954
+ "type": null,
5955
+ "fallback": null,
5956
+ "supportedRange": null,
5957
+ "sources": [
5958
+ "src/components/blockquote/blockquote.css"
5959
+ ],
5960
+ "runtimeAssigned": false
5961
+ },
5962
+ {
5963
+ "name": "--brick-blockquote-padding-block",
5964
+ "classification": "optional-extension",
5965
+ "scope": "component-instance",
5966
+ "owner": "blockquote",
5967
+ "type": null,
5968
+ "fallback": null,
5969
+ "supportedRange": null,
5970
+ "sources": [
5971
+ "src/components/blockquote/blockquote.css"
5972
+ ],
5973
+ "runtimeAssigned": false
5974
+ },
5975
+ {
5976
+ "name": "--brick-blockquote-padding-inline",
5977
+ "classification": "optional-extension",
5978
+ "scope": "component-instance",
5979
+ "owner": "blockquote",
5980
+ "type": null,
5981
+ "fallback": null,
5982
+ "supportedRange": null,
5983
+ "sources": [
5984
+ "src/components/blockquote/blockquote.css"
5985
+ ],
5986
+ "runtimeAssigned": false
5987
+ },
5988
+ {
5989
+ "name": "--brick-blockquote-radius",
5990
+ "classification": "optional-extension",
5991
+ "scope": "component-instance",
5992
+ "owner": "blockquote",
5993
+ "type": null,
5994
+ "fallback": null,
5995
+ "supportedRange": null,
5996
+ "sources": [
5997
+ "src/components/blockquote/blockquote.css"
5998
+ ],
5999
+ "runtimeAssigned": false
6000
+ },
6001
+ {
6002
+ "name": "--brick-border-focus-offset",
6003
+ "classification": "derived",
6004
+ "type": "dimension",
6005
+ "description": "Brick semantic dimension value for border / focus offset.",
6006
+ "appearance": "invariant",
6007
+ "defaults": {
6008
+ "light": "0.25rem",
6009
+ "dark": "0.25rem"
6010
+ },
6011
+ "sources": [
6012
+ "src/styles/tokens.tokens.json"
6013
+ ],
6014
+ "tokenPaths": {
6015
+ "light": "semantic.light.border.focus-offset",
6016
+ "dark": "semantic.dark.border.focus-offset"
6017
+ }
6018
+ },
6019
+ {
6020
+ "name": "--brick-border-focus-width",
6021
+ "classification": "derived",
6022
+ "type": "dimension",
6023
+ "description": "Brick semantic dimension value for border / focus width.",
6024
+ "appearance": "invariant",
6025
+ "defaults": {
6026
+ "light": "2px",
6027
+ "dark": "2px"
6028
+ },
6029
+ "sources": [
6030
+ "src/styles/tokens.tokens.json"
6031
+ ],
6032
+ "tokenPaths": {
6033
+ "light": "semantic.light.border.focus-width",
6034
+ "dark": "semantic.dark.border.focus-width"
6035
+ }
6036
+ },
6037
+ {
6038
+ "name": "--brick-border-width",
6039
+ "classification": "derived",
6040
+ "type": "dimension",
6041
+ "description": "Brick semantic dimension value for border / width.",
6042
+ "appearance": "invariant",
6043
+ "defaults": {
6044
+ "light": "1px",
6045
+ "dark": "1px"
6046
+ },
6047
+ "sources": [
6048
+ "src/styles/tokens.tokens.json"
6049
+ ],
6050
+ "tokenPaths": {
6051
+ "light": "semantic.light.border.width",
6052
+ "dark": "semantic.dark.border.width"
6053
+ }
6054
+ },
6055
+ {
6056
+ "name": "--brick-bottom-navigation-background",
6057
+ "classification": "optional-extension",
6058
+ "scope": "component-instance",
6059
+ "owner": "bottom-navigation",
6060
+ "type": null,
6061
+ "fallback": null,
6062
+ "supportedRange": null,
6063
+ "sources": [
6064
+ "src/components/bottom-navigation/bottom-navigation.css"
6065
+ ],
6066
+ "runtimeAssigned": false
6067
+ },
6068
+ {
6069
+ "name": "--brick-bottom-navigation-blurred-background",
6070
+ "classification": "optional-extension",
6071
+ "scope": "component-instance",
6072
+ "owner": "bottom-navigation",
6073
+ "type": null,
6074
+ "fallback": null,
6075
+ "supportedRange": null,
6076
+ "sources": [
6077
+ "src/components/bottom-navigation/bottom-navigation.css"
6078
+ ],
6079
+ "runtimeAssigned": false
6080
+ },
6081
+ {
6082
+ "name": "--brick-bottom-navigation-border-color",
6083
+ "classification": "optional-extension",
6084
+ "scope": "component-instance",
6085
+ "owner": "bottom-navigation",
6086
+ "type": null,
6087
+ "fallback": null,
6088
+ "supportedRange": null,
6089
+ "sources": [
6090
+ "src/components/bottom-navigation/bottom-navigation.css"
6091
+ ],
6092
+ "runtimeAssigned": false
6093
+ },
6094
+ {
6095
+ "name": "--brick-bottom-navigation-focus-ring",
6096
+ "classification": "optional-extension",
6097
+ "scope": "component-instance",
6098
+ "owner": "bottom-navigation",
6099
+ "type": null,
6100
+ "fallback": null,
6101
+ "supportedRange": null,
6102
+ "sources": [
6103
+ "src/components/bottom-navigation/bottom-navigation.css"
6104
+ ],
6105
+ "runtimeAssigned": false
6106
+ },
6107
+ {
6108
+ "name": "--brick-bottom-navigation-foreground",
6109
+ "classification": "optional-extension",
6110
+ "scope": "component-instance",
6111
+ "owner": "bottom-navigation",
6112
+ "type": null,
6113
+ "fallback": null,
6114
+ "supportedRange": null,
6115
+ "sources": [
6116
+ "src/components/bottom-navigation/bottom-navigation.css"
5560
6117
  ],
5561
6118
  "runtimeAssigned": false
5562
6119
  },
@@ -7169,67 +7726,210 @@
7169
7726
  "fallback": null,
7170
7727
  "supportedRange": null,
7171
7728
  "sources": [
7172
- "src/components/checkbox-group/checkbox-group.css",
7173
- "src/components/checkbox/checkbox.css"
7729
+ "src/components/checkbox-group/checkbox-group.css",
7730
+ "src/components/checkbox/checkbox.css"
7731
+ ],
7732
+ "runtimeAssigned": false
7733
+ },
7734
+ {
7735
+ "name": "--brick-checkbox-label-foreground",
7736
+ "classification": "optional-extension",
7737
+ "scope": "component-instance",
7738
+ "owner": "checkbox",
7739
+ "type": null,
7740
+ "fallback": null,
7741
+ "supportedRange": null,
7742
+ "sources": [
7743
+ "src/components/checkbox-group/checkbox-group.css",
7744
+ "src/components/checkbox/checkbox.css"
7745
+ ],
7746
+ "runtimeAssigned": false
7747
+ },
7748
+ {
7749
+ "name": "--brick-checkbox-radius",
7750
+ "classification": "optional-extension",
7751
+ "scope": "component-instance",
7752
+ "owner": "checkbox",
7753
+ "type": null,
7754
+ "fallback": null,
7755
+ "supportedRange": null,
7756
+ "sources": [
7757
+ "src/components/checkbox-group/checkbox-group.css",
7758
+ "src/components/checkbox/checkbox.css"
7759
+ ],
7760
+ "runtimeAssigned": false
7761
+ },
7762
+ {
7763
+ "name": "--brick-checkbox-row-padding-inline",
7764
+ "classification": "optional-extension",
7765
+ "scope": "component-instance",
7766
+ "owner": "checkbox",
7767
+ "type": null,
7768
+ "fallback": null,
7769
+ "supportedRange": null,
7770
+ "sources": [
7771
+ "src/components/checkbox/checkbox.css"
7772
+ ],
7773
+ "runtimeAssigned": false
7774
+ },
7775
+ {
7776
+ "name": "--brick-checkbox-target-min-size",
7777
+ "classification": "optional-extension",
7778
+ "scope": "component-instance",
7779
+ "owner": "checkbox",
7780
+ "type": null,
7781
+ "fallback": null,
7782
+ "supportedRange": null,
7783
+ "sources": [
7784
+ "src/components/checkbox/checkbox.css"
7785
+ ],
7786
+ "runtimeAssigned": false
7787
+ },
7788
+ {
7789
+ "name": "--brick-chip-background",
7790
+ "classification": "optional-extension",
7791
+ "scope": "component-instance",
7792
+ "owner": "chip",
7793
+ "type": null,
7794
+ "fallback": null,
7795
+ "supportedRange": null,
7796
+ "sources": [
7797
+ "src/components/chip/chip.css"
7798
+ ],
7799
+ "runtimeAssigned": false
7800
+ },
7801
+ {
7802
+ "name": "--brick-chip-border-color",
7803
+ "classification": "optional-extension",
7804
+ "scope": "component-instance",
7805
+ "owner": "chip",
7806
+ "type": null,
7807
+ "fallback": null,
7808
+ "supportedRange": null,
7809
+ "sources": [
7810
+ "src/components/chip/chip.css"
7811
+ ],
7812
+ "runtimeAssigned": false
7813
+ },
7814
+ {
7815
+ "name": "--brick-chip-font-size",
7816
+ "classification": "optional-extension",
7817
+ "scope": "component-instance",
7818
+ "owner": "chip",
7819
+ "type": null,
7820
+ "fallback": null,
7821
+ "supportedRange": null,
7822
+ "sources": [
7823
+ "src/components/chip/chip.css"
7824
+ ],
7825
+ "runtimeAssigned": false
7826
+ },
7827
+ {
7828
+ "name": "--brick-chip-foreground",
7829
+ "classification": "optional-extension",
7830
+ "scope": "component-instance",
7831
+ "owner": "chip",
7832
+ "type": null,
7833
+ "fallback": null,
7834
+ "supportedRange": null,
7835
+ "sources": [
7836
+ "src/components/chip/chip.css"
7837
+ ],
7838
+ "runtimeAssigned": false
7839
+ },
7840
+ {
7841
+ "name": "--brick-chip-gap",
7842
+ "classification": "optional-extension",
7843
+ "scope": "component-instance",
7844
+ "owner": "chip",
7845
+ "type": null,
7846
+ "fallback": null,
7847
+ "supportedRange": null,
7848
+ "sources": [
7849
+ "src/components/chip/chip.css"
7850
+ ],
7851
+ "runtimeAssigned": false
7852
+ },
7853
+ {
7854
+ "name": "--brick-chip-leading-size",
7855
+ "classification": "optional-extension",
7856
+ "scope": "component-instance",
7857
+ "owner": "chip",
7858
+ "type": null,
7859
+ "fallback": null,
7860
+ "supportedRange": null,
7861
+ "sources": [
7862
+ "src/components/chip/chip.css"
7863
+ ],
7864
+ "runtimeAssigned": false
7865
+ },
7866
+ {
7867
+ "name": "--brick-chip-min-block-size",
7868
+ "classification": "optional-extension",
7869
+ "scope": "component-instance",
7870
+ "owner": "chip",
7871
+ "type": null,
7872
+ "fallback": null,
7873
+ "supportedRange": null,
7874
+ "sources": [
7875
+ "src/components/chip/chip.css"
7174
7876
  ],
7175
7877
  "runtimeAssigned": false
7176
7878
  },
7177
7879
  {
7178
- "name": "--brick-checkbox-label-foreground",
7880
+ "name": "--brick-chip-padding-inline-end",
7179
7881
  "classification": "optional-extension",
7180
7882
  "scope": "component-instance",
7181
- "owner": "checkbox",
7883
+ "owner": "chip",
7182
7884
  "type": null,
7183
7885
  "fallback": null,
7184
7886
  "supportedRange": null,
7185
7887
  "sources": [
7186
- "src/components/checkbox-group/checkbox-group.css",
7187
- "src/components/checkbox/checkbox.css"
7888
+ "src/components/chip/chip.css"
7188
7889
  ],
7189
7890
  "runtimeAssigned": false
7190
7891
  },
7191
7892
  {
7192
- "name": "--brick-checkbox-radius",
7893
+ "name": "--brick-chip-padding-inline-start",
7193
7894
  "classification": "optional-extension",
7194
7895
  "scope": "component-instance",
7195
- "owner": "checkbox",
7896
+ "owner": "chip",
7196
7897
  "type": null,
7197
7898
  "fallback": null,
7198
7899
  "supportedRange": null,
7199
7900
  "sources": [
7200
- "src/components/checkbox-group/checkbox-group.css",
7201
- "src/components/checkbox/checkbox.css"
7901
+ "src/components/chip/chip.css"
7202
7902
  ],
7203
7903
  "runtimeAssigned": false
7204
7904
  },
7205
7905
  {
7206
- "name": "--brick-checkbox-row-padding-inline",
7906
+ "name": "--brick-chip-radius",
7207
7907
  "classification": "optional-extension",
7208
7908
  "scope": "component-instance",
7209
- "owner": "checkbox",
7909
+ "owner": "chip",
7210
7910
  "type": null,
7211
7911
  "fallback": null,
7212
7912
  "supportedRange": null,
7213
7913
  "sources": [
7214
- "src/components/checkbox/checkbox.css"
7914
+ "src/components/chip/chip.css"
7215
7915
  ],
7216
7916
  "runtimeAssigned": false
7217
7917
  },
7218
7918
  {
7219
- "name": "--brick-checkbox-target-min-size",
7919
+ "name": "--brick-chip-remove-active-background",
7220
7920
  "classification": "optional-extension",
7221
7921
  "scope": "component-instance",
7222
- "owner": "checkbox",
7922
+ "owner": "chip",
7223
7923
  "type": null,
7224
7924
  "fallback": null,
7225
7925
  "supportedRange": null,
7226
7926
  "sources": [
7227
- "src/components/checkbox/checkbox.css"
7927
+ "src/components/chip/chip.css"
7228
7928
  ],
7229
7929
  "runtimeAssigned": false
7230
7930
  },
7231
7931
  {
7232
- "name": "--brick-chip-background",
7932
+ "name": "--brick-chip-remove-background",
7233
7933
  "classification": "optional-extension",
7234
7934
  "scope": "component-instance",
7235
7935
  "owner": "chip",
@@ -7242,7 +7942,7 @@
7242
7942
  "runtimeAssigned": false
7243
7943
  },
7244
7944
  {
7245
- "name": "--brick-chip-border-color",
7945
+ "name": "--brick-chip-remove-foreground",
7246
7946
  "classification": "optional-extension",
7247
7947
  "scope": "component-instance",
7248
7948
  "owner": "chip",
@@ -7255,7 +7955,7 @@
7255
7955
  "runtimeAssigned": false
7256
7956
  },
7257
7957
  {
7258
- "name": "--brick-chip-font-size",
7958
+ "name": "--brick-chip-remove-hover-background",
7259
7959
  "classification": "optional-extension",
7260
7960
  "scope": "component-instance",
7261
7961
  "owner": "chip",
@@ -7268,7 +7968,7 @@
7268
7968
  "runtimeAssigned": false
7269
7969
  },
7270
7970
  {
7271
- "name": "--brick-chip-foreground",
7971
+ "name": "--brick-chip-remove-size",
7272
7972
  "classification": "optional-extension",
7273
7973
  "scope": "component-instance",
7274
7974
  "owner": "chip",
@@ -7281,163 +7981,163 @@
7281
7981
  "runtimeAssigned": false
7282
7982
  },
7283
7983
  {
7284
- "name": "--brick-chip-gap",
7984
+ "name": "--brick-code-background",
7285
7985
  "classification": "optional-extension",
7286
7986
  "scope": "component-instance",
7287
- "owner": "chip",
7987
+ "owner": "code",
7288
7988
  "type": null,
7289
7989
  "fallback": null,
7290
7990
  "supportedRange": null,
7291
7991
  "sources": [
7292
- "src/components/chip/chip.css"
7992
+ "src/components/code/code.css"
7293
7993
  ],
7294
7994
  "runtimeAssigned": false
7295
7995
  },
7296
7996
  {
7297
- "name": "--brick-chip-leading-size",
7997
+ "name": "--brick-code-block-background",
7298
7998
  "classification": "optional-extension",
7299
7999
  "scope": "component-instance",
7300
- "owner": "chip",
8000
+ "owner": "code-block",
7301
8001
  "type": null,
7302
8002
  "fallback": null,
7303
8003
  "supportedRange": null,
7304
8004
  "sources": [
7305
- "src/components/chip/chip.css"
8005
+ "src/components/code-block/code-block.css"
7306
8006
  ],
7307
8007
  "runtimeAssigned": false
7308
8008
  },
7309
8009
  {
7310
- "name": "--brick-chip-min-block-size",
8010
+ "name": "--brick-code-block-border-color",
7311
8011
  "classification": "optional-extension",
7312
8012
  "scope": "component-instance",
7313
- "owner": "chip",
8013
+ "owner": "code-block",
7314
8014
  "type": null,
7315
8015
  "fallback": null,
7316
8016
  "supportedRange": null,
7317
8017
  "sources": [
7318
- "src/components/chip/chip.css"
8018
+ "src/components/code-block/code-block.css"
7319
8019
  ],
7320
8020
  "runtimeAssigned": false
7321
8021
  },
7322
8022
  {
7323
- "name": "--brick-chip-padding-inline-end",
8023
+ "name": "--brick-code-block-border-width",
7324
8024
  "classification": "optional-extension",
7325
8025
  "scope": "component-instance",
7326
- "owner": "chip",
8026
+ "owner": "code-block",
7327
8027
  "type": null,
7328
8028
  "fallback": null,
7329
8029
  "supportedRange": null,
7330
8030
  "sources": [
7331
- "src/components/chip/chip.css"
8031
+ "src/components/code-block/code-block.css"
7332
8032
  ],
7333
8033
  "runtimeAssigned": false
7334
8034
  },
7335
8035
  {
7336
- "name": "--brick-chip-padding-inline-start",
8036
+ "name": "--brick-code-block-content-padding",
7337
8037
  "classification": "optional-extension",
7338
8038
  "scope": "component-instance",
7339
- "owner": "chip",
8039
+ "owner": "code-block",
7340
8040
  "type": null,
7341
8041
  "fallback": null,
7342
8042
  "supportedRange": null,
7343
8043
  "sources": [
7344
- "src/components/chip/chip.css"
8044
+ "src/components/code-block/code-block.css"
7345
8045
  ],
7346
8046
  "runtimeAssigned": false
7347
8047
  },
7348
8048
  {
7349
- "name": "--brick-chip-radius",
8049
+ "name": "--brick-code-block-content-padding-block",
7350
8050
  "classification": "optional-extension",
7351
8051
  "scope": "component-instance",
7352
- "owner": "chip",
8052
+ "owner": "code-block",
7353
8053
  "type": null,
7354
8054
  "fallback": null,
7355
8055
  "supportedRange": null,
7356
8056
  "sources": [
7357
- "src/components/chip/chip.css"
8057
+ "src/components/code-block/code-block.css"
7358
8058
  ],
7359
8059
  "runtimeAssigned": false
7360
8060
  },
7361
8061
  {
7362
- "name": "--brick-chip-remove-active-background",
8062
+ "name": "--brick-code-block-content-padding-inline",
7363
8063
  "classification": "optional-extension",
7364
8064
  "scope": "component-instance",
7365
- "owner": "chip",
8065
+ "owner": "code-block",
7366
8066
  "type": null,
7367
8067
  "fallback": null,
7368
8068
  "supportedRange": null,
7369
8069
  "sources": [
7370
- "src/components/chip/chip.css"
8070
+ "src/components/code-block/code-block.css"
7371
8071
  ],
7372
8072
  "runtimeAssigned": false
7373
8073
  },
7374
8074
  {
7375
- "name": "--brick-chip-remove-background",
8075
+ "name": "--brick-code-block-font-family",
7376
8076
  "classification": "optional-extension",
7377
8077
  "scope": "component-instance",
7378
- "owner": "chip",
8078
+ "owner": "code-block",
7379
8079
  "type": null,
7380
8080
  "fallback": null,
7381
8081
  "supportedRange": null,
7382
8082
  "sources": [
7383
- "src/components/chip/chip.css"
8083
+ "src/components/code-block/code-block.css"
7384
8084
  ],
7385
8085
  "runtimeAssigned": false
7386
8086
  },
7387
8087
  {
7388
- "name": "--brick-chip-remove-foreground",
8088
+ "name": "--brick-code-block-font-size",
7389
8089
  "classification": "optional-extension",
7390
8090
  "scope": "component-instance",
7391
- "owner": "chip",
8091
+ "owner": "code-block",
7392
8092
  "type": null,
7393
8093
  "fallback": null,
7394
8094
  "supportedRange": null,
7395
8095
  "sources": [
7396
- "src/components/chip/chip.css"
8096
+ "src/components/code-block/code-block.css"
7397
8097
  ],
7398
8098
  "runtimeAssigned": false
7399
8099
  },
7400
8100
  {
7401
- "name": "--brick-chip-remove-hover-background",
8101
+ "name": "--brick-code-block-font-weight",
7402
8102
  "classification": "optional-extension",
7403
8103
  "scope": "component-instance",
7404
- "owner": "chip",
8104
+ "owner": "code-block",
7405
8105
  "type": null,
7406
8106
  "fallback": null,
7407
8107
  "supportedRange": null,
7408
8108
  "sources": [
7409
- "src/components/chip/chip.css"
8109
+ "src/components/code-block/code-block.css"
7410
8110
  ],
7411
8111
  "runtimeAssigned": false
7412
8112
  },
7413
8113
  {
7414
- "name": "--brick-chip-remove-size",
8114
+ "name": "--brick-code-block-foreground",
7415
8115
  "classification": "optional-extension",
7416
8116
  "scope": "component-instance",
7417
- "owner": "chip",
8117
+ "owner": "code-block",
7418
8118
  "type": null,
7419
8119
  "fallback": null,
7420
8120
  "supportedRange": null,
7421
8121
  "sources": [
7422
- "src/components/chip/chip.css"
8122
+ "src/components/code-block/code-block.css"
7423
8123
  ],
7424
8124
  "runtimeAssigned": false
7425
8125
  },
7426
8126
  {
7427
- "name": "--brick-code-background",
8127
+ "name": "--brick-code-block-gap",
7428
8128
  "classification": "optional-extension",
7429
8129
  "scope": "component-instance",
7430
- "owner": "code",
8130
+ "owner": "code-block",
7431
8131
  "type": null,
7432
8132
  "fallback": null,
7433
8133
  "supportedRange": null,
7434
8134
  "sources": [
7435
- "src/components/code/code.css"
8135
+ "src/components/code-block/code-block.css"
7436
8136
  ],
7437
8137
  "runtimeAssigned": false
7438
8138
  },
7439
8139
  {
7440
- "name": "--brick-code-block-background",
8140
+ "name": "--brick-code-block-header-padding",
7441
8141
  "classification": "optional-extension",
7442
8142
  "scope": "component-instance",
7443
8143
  "owner": "code-block",
@@ -7450,7 +8150,7 @@
7450
8150
  "runtimeAssigned": false
7451
8151
  },
7452
8152
  {
7453
- "name": "--brick-code-block-border-color",
8153
+ "name": "--brick-code-block-letter-spacing",
7454
8154
  "classification": "optional-extension",
7455
8155
  "scope": "component-instance",
7456
8156
  "owner": "code-block",
@@ -7463,7 +8163,7 @@
7463
8163
  "runtimeAssigned": false
7464
8164
  },
7465
8165
  {
7466
- "name": "--brick-code-block-border-width",
8166
+ "name": "--brick-code-block-line-added-background",
7467
8167
  "classification": "optional-extension",
7468
8168
  "scope": "component-instance",
7469
8169
  "owner": "code-block",
@@ -7476,7 +8176,7 @@
7476
8176
  "runtimeAssigned": false
7477
8177
  },
7478
8178
  {
7479
- "name": "--brick-code-block-content-padding",
8179
+ "name": "--brick-code-block-line-added-border",
7480
8180
  "classification": "optional-extension",
7481
8181
  "scope": "component-instance",
7482
8182
  "owner": "code-block",
@@ -7489,7 +8189,7 @@
7489
8189
  "runtimeAssigned": false
7490
8190
  },
7491
8191
  {
7492
- "name": "--brick-code-block-font-family",
8192
+ "name": "--brick-code-block-line-focus-background",
7493
8193
  "classification": "optional-extension",
7494
8194
  "scope": "component-instance",
7495
8195
  "owner": "code-block",
@@ -7502,7 +8202,7 @@
7502
8202
  "runtimeAssigned": false
7503
8203
  },
7504
8204
  {
7505
- "name": "--brick-code-block-font-size",
8205
+ "name": "--brick-code-block-line-height",
7506
8206
  "classification": "optional-extension",
7507
8207
  "scope": "component-instance",
7508
8208
  "owner": "code-block",
@@ -7515,7 +8215,7 @@
7515
8215
  "runtimeAssigned": false
7516
8216
  },
7517
8217
  {
7518
- "name": "--brick-code-block-font-weight",
8218
+ "name": "--brick-code-block-line-highlight-background",
7519
8219
  "classification": "optional-extension",
7520
8220
  "scope": "component-instance",
7521
8221
  "owner": "code-block",
@@ -7528,7 +8228,7 @@
7528
8228
  "runtimeAssigned": false
7529
8229
  },
7530
8230
  {
7531
- "name": "--brick-code-block-foreground",
8231
+ "name": "--brick-code-block-line-number-foreground",
7532
8232
  "classification": "optional-extension",
7533
8233
  "scope": "component-instance",
7534
8234
  "owner": "code-block",
@@ -7541,7 +8241,7 @@
7541
8241
  "runtimeAssigned": false
7542
8242
  },
7543
8243
  {
7544
- "name": "--brick-code-block-gap",
8244
+ "name": "--brick-code-block-line-number-width",
7545
8245
  "classification": "optional-extension",
7546
8246
  "scope": "component-instance",
7547
8247
  "owner": "code-block",
@@ -7554,7 +8254,7 @@
7554
8254
  "runtimeAssigned": false
7555
8255
  },
7556
8256
  {
7557
- "name": "--brick-code-block-header-padding",
8257
+ "name": "--brick-code-block-line-removed-background",
7558
8258
  "classification": "optional-extension",
7559
8259
  "scope": "component-instance",
7560
8260
  "owner": "code-block",
@@ -7567,7 +8267,7 @@
7567
8267
  "runtimeAssigned": false
7568
8268
  },
7569
8269
  {
7570
- "name": "--brick-code-block-letter-spacing",
8270
+ "name": "--brick-code-block-line-removed-border",
7571
8271
  "classification": "optional-extension",
7572
8272
  "scope": "component-instance",
7573
8273
  "owner": "code-block",
@@ -7580,7 +8280,7 @@
7580
8280
  "runtimeAssigned": false
7581
8281
  },
7582
8282
  {
7583
- "name": "--brick-code-block-line-height",
8283
+ "name": "--brick-code-block-max-block-size",
7584
8284
  "classification": "optional-extension",
7585
8285
  "scope": "component-instance",
7586
8286
  "owner": "code-block",
@@ -7588,9 +8288,10 @@
7588
8288
  "fallback": null,
7589
8289
  "supportedRange": null,
7590
8290
  "sources": [
8291
+ "src/components/code-block/CodeBlock.tsx",
7591
8292
  "src/components/code-block/code-block.css"
7592
8293
  ],
7593
- "runtimeAssigned": false
8294
+ "runtimeAssigned": true
7594
8295
  },
7595
8296
  {
7596
8297
  "name": "--brick-code-block-radius",
@@ -8723,6 +9424,19 @@
8723
9424
  "dark": "semantic.dark.color.link.text-pressed"
8724
9425
  }
8725
9426
  },
9427
+ {
9428
+ "name": "--brick-color-picker-area-block-size",
9429
+ "classification": "optional-extension",
9430
+ "scope": "component-instance",
9431
+ "owner": "color-picker",
9432
+ "type": null,
9433
+ "fallback": null,
9434
+ "supportedRange": null,
9435
+ "sources": [
9436
+ "src/components/color-picker/color-picker.css"
9437
+ ],
9438
+ "runtimeAssigned": false
9439
+ },
8726
9440
  {
8727
9441
  "name": "--brick-color-picker-background",
8728
9442
  "classification": "optional-extension",
@@ -8749,6 +9463,19 @@
8749
9463
  ],
8750
9464
  "runtimeAssigned": false
8751
9465
  },
9466
+ {
9467
+ "name": "--brick-color-picker-checker-size",
9468
+ "classification": "optional-extension",
9469
+ "scope": "component-instance",
9470
+ "owner": "color-picker",
9471
+ "type": null,
9472
+ "fallback": null,
9473
+ "supportedRange": null,
9474
+ "sources": [
9475
+ "src/components/color-picker/color-picker.css"
9476
+ ],
9477
+ "runtimeAssigned": false
9478
+ },
8752
9479
  {
8753
9480
  "name": "--brick-color-picker-content-background",
8754
9481
  "classification": "optional-extension",
@@ -8840,6 +9567,110 @@
8840
9567
  ],
8841
9568
  "runtimeAssigned": false
8842
9569
  },
9570
+ {
9571
+ "name": "--brick-color-picker-indicator-color",
9572
+ "classification": "optional-extension",
9573
+ "scope": "component-instance",
9574
+ "owner": "color-picker",
9575
+ "type": null,
9576
+ "fallback": null,
9577
+ "supportedRange": null,
9578
+ "sources": [
9579
+ "src/components/color-picker/color-picker.css"
9580
+ ],
9581
+ "runtimeAssigned": false
9582
+ },
9583
+ {
9584
+ "name": "--brick-color-picker-indicator-shadow",
9585
+ "classification": "optional-extension",
9586
+ "scope": "component-instance",
9587
+ "owner": "color-picker",
9588
+ "type": null,
9589
+ "fallback": null,
9590
+ "supportedRange": null,
9591
+ "sources": [
9592
+ "src/components/color-picker/color-picker.css"
9593
+ ],
9594
+ "runtimeAssigned": false
9595
+ },
9596
+ {
9597
+ "name": "--brick-color-picker-input-width",
9598
+ "classification": "optional-extension",
9599
+ "scope": "component-instance",
9600
+ "owner": "color-picker",
9601
+ "type": null,
9602
+ "fallback": null,
9603
+ "supportedRange": null,
9604
+ "sources": [
9605
+ "src/components/color-picker/color-picker.css"
9606
+ ],
9607
+ "runtimeAssigned": false
9608
+ },
9609
+ {
9610
+ "name": "--brick-color-picker-slider-block-size",
9611
+ "classification": "optional-extension",
9612
+ "scope": "component-instance",
9613
+ "owner": "color-picker",
9614
+ "type": null,
9615
+ "fallback": null,
9616
+ "supportedRange": null,
9617
+ "sources": [
9618
+ "src/components/color-picker/color-picker.css"
9619
+ ],
9620
+ "runtimeAssigned": false
9621
+ },
9622
+ {
9623
+ "name": "--brick-color-picker-swatch-gap",
9624
+ "classification": "optional-extension",
9625
+ "scope": "component-instance",
9626
+ "owner": "color-picker",
9627
+ "type": null,
9628
+ "fallback": null,
9629
+ "supportedRange": null,
9630
+ "sources": [
9631
+ "src/components/color-picker/color-picker.css"
9632
+ ],
9633
+ "runtimeAssigned": false
9634
+ },
9635
+ {
9636
+ "name": "--brick-color-picker-swatch-radius",
9637
+ "classification": "optional-extension",
9638
+ "scope": "component-instance",
9639
+ "owner": "color-picker",
9640
+ "type": null,
9641
+ "fallback": null,
9642
+ "supportedRange": null,
9643
+ "sources": [
9644
+ "src/components/color-picker/color-picker.css"
9645
+ ],
9646
+ "runtimeAssigned": false
9647
+ },
9648
+ {
9649
+ "name": "--brick-color-picker-swatch-size",
9650
+ "classification": "optional-extension",
9651
+ "scope": "component-instance",
9652
+ "owner": "color-picker",
9653
+ "type": null,
9654
+ "fallback": null,
9655
+ "supportedRange": null,
9656
+ "sources": [
9657
+ "src/components/color-picker/color-picker.css"
9658
+ ],
9659
+ "runtimeAssigned": false
9660
+ },
9661
+ {
9662
+ "name": "--brick-color-picker-thumb-size",
9663
+ "classification": "optional-extension",
9664
+ "scope": "component-instance",
9665
+ "owner": "color-picker",
9666
+ "type": null,
9667
+ "fallback": null,
9668
+ "supportedRange": null,
9669
+ "sources": [
9670
+ "src/components/color-picker/color-picker.css"
9671
+ ],
9672
+ "runtimeAssigned": false
9673
+ },
8843
9674
  {
8844
9675
  "name": "--brick-color-scrim",
8845
9676
  "classification": "required",
@@ -11244,15 +12075,28 @@
11244
12075
  "runtimeAssigned": false
11245
12076
  },
11246
12077
  {
11247
- "name": "--brick-dropdown-menu-shortcut-foreground",
12078
+ "name": "--brick-dropdown-menu-shortcut-foreground",
12079
+ "classification": "optional-extension",
12080
+ "scope": "component-instance",
12081
+ "owner": "dropdown-menu",
12082
+ "type": null,
12083
+ "fallback": null,
12084
+ "supportedRange": null,
12085
+ "sources": [
12086
+ "src/components/dropdown-menu/dropdown-menu.css"
12087
+ ],
12088
+ "runtimeAssigned": false
12089
+ },
12090
+ {
12091
+ "name": "--brick-em-font-style",
11248
12092
  "classification": "optional-extension",
11249
12093
  "scope": "component-instance",
11250
- "owner": "dropdown-menu",
12094
+ "owner": "em",
11251
12095
  "type": null,
11252
12096
  "fallback": null,
11253
12097
  "supportedRange": null,
11254
12098
  "sources": [
11255
- "src/components/dropdown-menu/dropdown-menu.css"
12099
+ "src/components/em/em.css"
11256
12100
  ],
11257
12101
  "runtimeAssigned": false
11258
12102
  },
@@ -13337,6 +14181,97 @@
13337
14181
  ],
13338
14182
  "runtimeAssigned": false
13339
14183
  },
14184
+ {
14185
+ "name": "--brick-highlight-background",
14186
+ "classification": "optional-extension",
14187
+ "scope": "component-instance",
14188
+ "owner": "highlight",
14189
+ "type": null,
14190
+ "fallback": null,
14191
+ "supportedRange": null,
14192
+ "sources": [
14193
+ "src/components/highlight/highlight.css"
14194
+ ],
14195
+ "runtimeAssigned": false
14196
+ },
14197
+ {
14198
+ "name": "--brick-highlight-decoration-color",
14199
+ "classification": "optional-extension",
14200
+ "scope": "component-instance",
14201
+ "owner": "highlight",
14202
+ "type": null,
14203
+ "fallback": null,
14204
+ "supportedRange": null,
14205
+ "sources": [
14206
+ "src/components/highlight/highlight.css"
14207
+ ],
14208
+ "runtimeAssigned": false
14209
+ },
14210
+ {
14211
+ "name": "--brick-highlight-decoration-offset",
14212
+ "classification": "optional-extension",
14213
+ "scope": "component-instance",
14214
+ "owner": "highlight",
14215
+ "type": null,
14216
+ "fallback": null,
14217
+ "supportedRange": null,
14218
+ "sources": [
14219
+ "src/components/highlight/highlight.css"
14220
+ ],
14221
+ "runtimeAssigned": false
14222
+ },
14223
+ {
14224
+ "name": "--brick-highlight-decoration-thickness",
14225
+ "classification": "optional-extension",
14226
+ "scope": "component-instance",
14227
+ "owner": "highlight",
14228
+ "type": null,
14229
+ "fallback": null,
14230
+ "supportedRange": null,
14231
+ "sources": [
14232
+ "src/components/highlight/highlight.css"
14233
+ ],
14234
+ "runtimeAssigned": false
14235
+ },
14236
+ {
14237
+ "name": "--brick-highlight-foreground",
14238
+ "classification": "optional-extension",
14239
+ "scope": "component-instance",
14240
+ "owner": "highlight",
14241
+ "type": null,
14242
+ "fallback": null,
14243
+ "supportedRange": null,
14244
+ "sources": [
14245
+ "src/components/highlight/highlight.css"
14246
+ ],
14247
+ "runtimeAssigned": false
14248
+ },
14249
+ {
14250
+ "name": "--brick-highlight-padding-inline",
14251
+ "classification": "optional-extension",
14252
+ "scope": "component-instance",
14253
+ "owner": "highlight",
14254
+ "type": null,
14255
+ "fallback": null,
14256
+ "supportedRange": null,
14257
+ "sources": [
14258
+ "src/components/highlight/highlight.css"
14259
+ ],
14260
+ "runtimeAssigned": false
14261
+ },
14262
+ {
14263
+ "name": "--brick-highlight-radius",
14264
+ "classification": "optional-extension",
14265
+ "scope": "component-instance",
14266
+ "owner": "highlight",
14267
+ "type": null,
14268
+ "fallback": null,
14269
+ "supportedRange": null,
14270
+ "sources": [
14271
+ "src/components/highlight/highlight.css"
14272
+ ],
14273
+ "runtimeAssigned": false
14274
+ },
13340
14275
  {
13341
14276
  "name": "--brick-hover-card-background",
13342
14277
  "classification": "optional-extension",
@@ -14330,6 +15265,175 @@
14330
15265
  ],
14331
15266
  "runtimeAssigned": false
14332
15267
  },
15268
+ {
15269
+ "name": "--brick-kbd-background",
15270
+ "classification": "optional-extension",
15271
+ "scope": "component-instance",
15272
+ "owner": "kbd",
15273
+ "type": null,
15274
+ "fallback": null,
15275
+ "supportedRange": null,
15276
+ "sources": [
15277
+ "src/components/kbd/kbd.css"
15278
+ ],
15279
+ "runtimeAssigned": false
15280
+ },
15281
+ {
15282
+ "name": "--brick-kbd-border-block-end-color",
15283
+ "classification": "optional-extension",
15284
+ "scope": "component-instance",
15285
+ "owner": "kbd",
15286
+ "type": null,
15287
+ "fallback": null,
15288
+ "supportedRange": null,
15289
+ "sources": [
15290
+ "src/components/kbd/kbd.css"
15291
+ ],
15292
+ "runtimeAssigned": false
15293
+ },
15294
+ {
15295
+ "name": "--brick-kbd-border-color",
15296
+ "classification": "optional-extension",
15297
+ "scope": "component-instance",
15298
+ "owner": "kbd",
15299
+ "type": null,
15300
+ "fallback": null,
15301
+ "supportedRange": null,
15302
+ "sources": [
15303
+ "src/components/kbd/kbd.css"
15304
+ ],
15305
+ "runtimeAssigned": false
15306
+ },
15307
+ {
15308
+ "name": "--brick-kbd-font-family",
15309
+ "classification": "optional-extension",
15310
+ "scope": "component-instance",
15311
+ "owner": "kbd",
15312
+ "type": null,
15313
+ "fallback": null,
15314
+ "supportedRange": null,
15315
+ "sources": [
15316
+ "src/components/kbd/kbd.css"
15317
+ ],
15318
+ "runtimeAssigned": false
15319
+ },
15320
+ {
15321
+ "name": "--brick-kbd-font-size",
15322
+ "classification": "optional-extension",
15323
+ "scope": "component-instance",
15324
+ "owner": "kbd",
15325
+ "type": null,
15326
+ "fallback": null,
15327
+ "supportedRange": null,
15328
+ "sources": [
15329
+ "src/components/kbd/kbd.css"
15330
+ ],
15331
+ "runtimeAssigned": false
15332
+ },
15333
+ {
15334
+ "name": "--brick-kbd-font-weight",
15335
+ "classification": "optional-extension",
15336
+ "scope": "component-instance",
15337
+ "owner": "kbd",
15338
+ "type": null,
15339
+ "fallback": null,
15340
+ "supportedRange": null,
15341
+ "sources": [
15342
+ "src/components/kbd/kbd.css"
15343
+ ],
15344
+ "runtimeAssigned": false
15345
+ },
15346
+ {
15347
+ "name": "--brick-kbd-foreground",
15348
+ "classification": "optional-extension",
15349
+ "scope": "component-instance",
15350
+ "owner": "kbd",
15351
+ "type": null,
15352
+ "fallback": null,
15353
+ "supportedRange": null,
15354
+ "sources": [
15355
+ "src/components/kbd/kbd.css"
15356
+ ],
15357
+ "runtimeAssigned": false
15358
+ },
15359
+ {
15360
+ "name": "--brick-kbd-letter-spacing",
15361
+ "classification": "optional-extension",
15362
+ "scope": "component-instance",
15363
+ "owner": "kbd",
15364
+ "type": null,
15365
+ "fallback": null,
15366
+ "supportedRange": null,
15367
+ "sources": [
15368
+ "src/components/kbd/kbd.css"
15369
+ ],
15370
+ "runtimeAssigned": false
15371
+ },
15372
+ {
15373
+ "name": "--brick-kbd-line-height",
15374
+ "classification": "optional-extension",
15375
+ "scope": "component-instance",
15376
+ "owner": "kbd",
15377
+ "type": null,
15378
+ "fallback": null,
15379
+ "supportedRange": null,
15380
+ "sources": [
15381
+ "src/components/kbd/kbd.css"
15382
+ ],
15383
+ "runtimeAssigned": false
15384
+ },
15385
+ {
15386
+ "name": "--brick-kbd-min-block-size",
15387
+ "classification": "optional-extension",
15388
+ "scope": "component-instance",
15389
+ "owner": "kbd",
15390
+ "type": null,
15391
+ "fallback": null,
15392
+ "supportedRange": null,
15393
+ "sources": [
15394
+ "src/components/kbd/kbd.css"
15395
+ ],
15396
+ "runtimeAssigned": false
15397
+ },
15398
+ {
15399
+ "name": "--brick-kbd-padding-inline",
15400
+ "classification": "optional-extension",
15401
+ "scope": "component-instance",
15402
+ "owner": "kbd",
15403
+ "type": null,
15404
+ "fallback": null,
15405
+ "supportedRange": null,
15406
+ "sources": [
15407
+ "src/components/kbd/kbd.css"
15408
+ ],
15409
+ "runtimeAssigned": false
15410
+ },
15411
+ {
15412
+ "name": "--brick-kbd-radius",
15413
+ "classification": "optional-extension",
15414
+ "scope": "component-instance",
15415
+ "owner": "kbd",
15416
+ "type": null,
15417
+ "fallback": null,
15418
+ "supportedRange": null,
15419
+ "sources": [
15420
+ "src/components/kbd/kbd.css"
15421
+ ],
15422
+ "runtimeAssigned": false
15423
+ },
15424
+ {
15425
+ "name": "--brick-kbd-shadow",
15426
+ "classification": "optional-extension",
15427
+ "scope": "component-instance",
15428
+ "owner": "kbd",
15429
+ "type": null,
15430
+ "fallback": null,
15431
+ "supportedRange": null,
15432
+ "sources": [
15433
+ "src/components/kbd/kbd.css"
15434
+ ],
15435
+ "runtimeAssigned": false
15436
+ },
14333
15437
  {
14334
15438
  "name": "--brick-layer-base",
14335
15439
  "classification": "derived",
@@ -14757,7 +15861,59 @@
14757
15861
  "runtimeAssigned": false
14758
15862
  },
14759
15863
  {
14760
- "name": "--brick-list-marker-gap",
15864
+ "name": "--brick-list-marker-gap",
15865
+ "classification": "optional-extension",
15866
+ "scope": "component-instance",
15867
+ "owner": "list",
15868
+ "type": null,
15869
+ "fallback": null,
15870
+ "supportedRange": null,
15871
+ "sources": [
15872
+ "src/components/list/list.css"
15873
+ ],
15874
+ "runtimeAssigned": false
15875
+ },
15876
+ {
15877
+ "name": "--brick-list-marker-style",
15878
+ "classification": "optional-extension",
15879
+ "scope": "component-instance",
15880
+ "owner": "list",
15881
+ "type": null,
15882
+ "fallback": null,
15883
+ "supportedRange": null,
15884
+ "sources": [
15885
+ "src/components/list/list.css"
15886
+ ],
15887
+ "runtimeAssigned": false
15888
+ },
15889
+ {
15890
+ "name": "--brick-list-nested-inset",
15891
+ "classification": "optional-extension",
15892
+ "scope": "component-instance",
15893
+ "owner": "list",
15894
+ "type": null,
15895
+ "fallback": null,
15896
+ "supportedRange": null,
15897
+ "sources": [
15898
+ "src/components/list/list.css"
15899
+ ],
15900
+ "runtimeAssigned": false
15901
+ },
15902
+ {
15903
+ "name": "--brick-list-part-align",
15904
+ "classification": "optional-extension",
15905
+ "scope": "component-instance",
15906
+ "owner": "list",
15907
+ "type": null,
15908
+ "fallback": null,
15909
+ "supportedRange": null,
15910
+ "sources": [
15911
+ "src/components/list/list.css"
15912
+ ],
15913
+ "runtimeAssigned": false
15914
+ },
15915
+ {
15916
+ "name": "--brick-list-radius",
14761
15917
  "classification": "optional-extension",
14762
15918
  "scope": "component-instance",
14763
15919
  "owner": "list",
@@ -14770,7 +15926,7 @@
14770
15926
  "runtimeAssigned": false
14771
15927
  },
14772
15928
  {
14773
- "name": "--brick-list-marker-style",
15929
+ "name": "--brick-list-row-gap",
14774
15930
  "classification": "optional-extension",
14775
15931
  "scope": "component-instance",
14776
15932
  "owner": "list",
@@ -14783,7 +15939,7 @@
14783
15939
  "runtimeAssigned": false
14784
15940
  },
14785
15941
  {
14786
- "name": "--brick-list-nested-inset",
15942
+ "name": "--brick-list-row-padding-block",
14787
15943
  "classification": "optional-extension",
14788
15944
  "scope": "component-instance",
14789
15945
  "owner": "list",
@@ -14796,7 +15952,7 @@
14796
15952
  "runtimeAssigned": false
14797
15953
  },
14798
15954
  {
14799
- "name": "--brick-list-part-align",
15955
+ "name": "--brick-list-row-padding-inline",
14800
15956
  "classification": "optional-extension",
14801
15957
  "scope": "component-instance",
14802
15958
  "owner": "list",
@@ -14809,7 +15965,7 @@
14809
15965
  "runtimeAssigned": false
14810
15966
  },
14811
15967
  {
14812
- "name": "--brick-list-radius",
15968
+ "name": "--brick-list-title-color",
14813
15969
  "classification": "optional-extension",
14814
15970
  "scope": "component-instance",
14815
15971
  "owner": "list",
@@ -14822,7 +15978,7 @@
14822
15978
  "runtimeAssigned": false
14823
15979
  },
14824
15980
  {
14825
- "name": "--brick-list-row-gap",
15981
+ "name": "--brick-list-title-font-size",
14826
15982
  "classification": "optional-extension",
14827
15983
  "scope": "component-instance",
14828
15984
  "owner": "list",
@@ -14835,7 +15991,7 @@
14835
15991
  "runtimeAssigned": false
14836
15992
  },
14837
15993
  {
14838
- "name": "--brick-list-row-padding-block",
15994
+ "name": "--brick-list-title-line-height",
14839
15995
  "classification": "optional-extension",
14840
15996
  "scope": "component-instance",
14841
15997
  "owner": "list",
@@ -14848,54 +16004,54 @@
14848
16004
  "runtimeAssigned": false
14849
16005
  },
14850
16006
  {
14851
- "name": "--brick-list-row-padding-inline",
16007
+ "name": "--brick-mark-background",
14852
16008
  "classification": "optional-extension",
14853
16009
  "scope": "component-instance",
14854
- "owner": "list",
16010
+ "owner": "mark",
14855
16011
  "type": null,
14856
16012
  "fallback": null,
14857
16013
  "supportedRange": null,
14858
16014
  "sources": [
14859
- "src/components/list/list.css"
16015
+ "src/components/mark/mark.css"
14860
16016
  ],
14861
16017
  "runtimeAssigned": false
14862
16018
  },
14863
16019
  {
14864
- "name": "--brick-list-title-color",
16020
+ "name": "--brick-mark-foreground",
14865
16021
  "classification": "optional-extension",
14866
16022
  "scope": "component-instance",
14867
- "owner": "list",
16023
+ "owner": "mark",
14868
16024
  "type": null,
14869
16025
  "fallback": null,
14870
16026
  "supportedRange": null,
14871
16027
  "sources": [
14872
- "src/components/list/list.css"
16028
+ "src/components/mark/mark.css"
14873
16029
  ],
14874
16030
  "runtimeAssigned": false
14875
16031
  },
14876
16032
  {
14877
- "name": "--brick-list-title-font-size",
16033
+ "name": "--brick-mark-padding-inline",
14878
16034
  "classification": "optional-extension",
14879
16035
  "scope": "component-instance",
14880
- "owner": "list",
16036
+ "owner": "mark",
14881
16037
  "type": null,
14882
16038
  "fallback": null,
14883
16039
  "supportedRange": null,
14884
16040
  "sources": [
14885
- "src/components/list/list.css"
16041
+ "src/components/mark/mark.css"
14886
16042
  ],
14887
16043
  "runtimeAssigned": false
14888
16044
  },
14889
16045
  {
14890
- "name": "--brick-list-title-line-height",
16046
+ "name": "--brick-mark-radius",
14891
16047
  "classification": "optional-extension",
14892
16048
  "scope": "component-instance",
14893
- "owner": "list",
16049
+ "owner": "mark",
14894
16050
  "type": null,
14895
16051
  "fallback": null,
14896
16052
  "supportedRange": null,
14897
16053
  "sources": [
14898
- "src/components/list/list.css"
16054
+ "src/components/mark/mark.css"
14899
16055
  ],
14900
16056
  "runtimeAssigned": false
14901
16057
  },
@@ -17825,6 +18981,305 @@
17825
18981
  ],
17826
18982
  "runtimeAssigned": false
17827
18983
  },
18984
+ {
18985
+ "name": "--brick-prose-accent",
18986
+ "classification": "optional-extension",
18987
+ "scope": "component-instance",
18988
+ "owner": "prose",
18989
+ "type": null,
18990
+ "fallback": null,
18991
+ "supportedRange": null,
18992
+ "sources": [
18993
+ "src/components/prose/prose.css"
18994
+ ],
18995
+ "runtimeAssigned": false
18996
+ },
18997
+ {
18998
+ "name": "--brick-prose-body-font-family",
18999
+ "classification": "optional-extension",
19000
+ "scope": "component-instance",
19001
+ "owner": "prose",
19002
+ "type": null,
19003
+ "fallback": null,
19004
+ "supportedRange": null,
19005
+ "sources": [
19006
+ "src/components/prose/prose.css"
19007
+ ],
19008
+ "runtimeAssigned": false
19009
+ },
19010
+ {
19011
+ "name": "--brick-prose-body-font-size",
19012
+ "classification": "optional-extension",
19013
+ "scope": "component-instance",
19014
+ "owner": "prose",
19015
+ "type": null,
19016
+ "fallback": null,
19017
+ "supportedRange": null,
19018
+ "sources": [
19019
+ "src/components/prose/prose.css"
19020
+ ],
19021
+ "runtimeAssigned": false
19022
+ },
19023
+ {
19024
+ "name": "--brick-prose-body-font-weight",
19025
+ "classification": "optional-extension",
19026
+ "scope": "component-instance",
19027
+ "owner": "prose",
19028
+ "type": null,
19029
+ "fallback": null,
19030
+ "supportedRange": null,
19031
+ "sources": [
19032
+ "src/components/prose/prose.css"
19033
+ ],
19034
+ "runtimeAssigned": false
19035
+ },
19036
+ {
19037
+ "name": "--brick-prose-body-letter-spacing",
19038
+ "classification": "optional-extension",
19039
+ "scope": "component-instance",
19040
+ "owner": "prose",
19041
+ "type": null,
19042
+ "fallback": null,
19043
+ "supportedRange": null,
19044
+ "sources": [
19045
+ "src/components/prose/prose.css"
19046
+ ],
19047
+ "runtimeAssigned": false
19048
+ },
19049
+ {
19050
+ "name": "--brick-prose-body-line-height",
19051
+ "classification": "optional-extension",
19052
+ "scope": "component-instance",
19053
+ "owner": "prose",
19054
+ "type": null,
19055
+ "fallback": null,
19056
+ "supportedRange": null,
19057
+ "sources": [
19058
+ "src/components/prose/prose.css"
19059
+ ],
19060
+ "runtimeAssigned": false
19061
+ },
19062
+ {
19063
+ "name": "--brick-prose-border-color",
19064
+ "classification": "optional-extension",
19065
+ "scope": "component-instance",
19066
+ "owner": "prose",
19067
+ "type": null,
19068
+ "fallback": null,
19069
+ "supportedRange": null,
19070
+ "sources": [
19071
+ "src/components/prose/prose.css"
19072
+ ],
19073
+ "runtimeAssigned": false
19074
+ },
19075
+ {
19076
+ "name": "--brick-prose-code-font-family",
19077
+ "classification": "optional-extension",
19078
+ "scope": "component-instance",
19079
+ "owner": "prose",
19080
+ "type": null,
19081
+ "fallback": null,
19082
+ "supportedRange": null,
19083
+ "sources": [
19084
+ "src/components/prose/prose.css"
19085
+ ],
19086
+ "runtimeAssigned": false
19087
+ },
19088
+ {
19089
+ "name": "--brick-prose-code-font-size",
19090
+ "classification": "optional-extension",
19091
+ "scope": "component-instance",
19092
+ "owner": "prose",
19093
+ "type": null,
19094
+ "fallback": null,
19095
+ "supportedRange": null,
19096
+ "sources": [
19097
+ "src/components/prose/prose.css"
19098
+ ],
19099
+ "runtimeAssigned": false
19100
+ },
19101
+ {
19102
+ "name": "--brick-prose-code-radius",
19103
+ "classification": "optional-extension",
19104
+ "scope": "component-instance",
19105
+ "owner": "prose",
19106
+ "type": null,
19107
+ "fallback": null,
19108
+ "supportedRange": null,
19109
+ "sources": [
19110
+ "src/components/prose/prose.css"
19111
+ ],
19112
+ "runtimeAssigned": false
19113
+ },
19114
+ {
19115
+ "name": "--brick-prose-flow-space",
19116
+ "classification": "optional-extension",
19117
+ "scope": "component-instance",
19118
+ "owner": "prose",
19119
+ "type": null,
19120
+ "fallback": null,
19121
+ "supportedRange": null,
19122
+ "sources": [
19123
+ "src/components/prose/prose.css"
19124
+ ],
19125
+ "runtimeAssigned": false
19126
+ },
19127
+ {
19128
+ "name": "--brick-prose-foreground",
19129
+ "classification": "optional-extension",
19130
+ "scope": "component-instance",
19131
+ "owner": "prose",
19132
+ "type": null,
19133
+ "fallback": null,
19134
+ "supportedRange": null,
19135
+ "sources": [
19136
+ "src/components/prose/prose.css"
19137
+ ],
19138
+ "runtimeAssigned": false
19139
+ },
19140
+ {
19141
+ "name": "--brick-prose-heading-font-family",
19142
+ "classification": "optional-extension",
19143
+ "scope": "component-instance",
19144
+ "owner": "prose",
19145
+ "type": null,
19146
+ "fallback": null,
19147
+ "supportedRange": null,
19148
+ "sources": [
19149
+ "src/components/prose/prose.css"
19150
+ ],
19151
+ "runtimeAssigned": false
19152
+ },
19153
+ {
19154
+ "name": "--brick-prose-heading-font-weight",
19155
+ "classification": "optional-extension",
19156
+ "scope": "component-instance",
19157
+ "owner": "prose",
19158
+ "type": null,
19159
+ "fallback": null,
19160
+ "supportedRange": null,
19161
+ "sources": [
19162
+ "src/components/prose/prose.css"
19163
+ ],
19164
+ "runtimeAssigned": false
19165
+ },
19166
+ {
19167
+ "name": "--brick-prose-heading-letter-spacing",
19168
+ "classification": "optional-extension",
19169
+ "scope": "component-instance",
19170
+ "owner": "prose",
19171
+ "type": null,
19172
+ "fallback": null,
19173
+ "supportedRange": null,
19174
+ "sources": [
19175
+ "src/components/prose/prose.css"
19176
+ ],
19177
+ "runtimeAssigned": false
19178
+ },
19179
+ {
19180
+ "name": "--brick-prose-link-foreground",
19181
+ "classification": "optional-extension",
19182
+ "scope": "component-instance",
19183
+ "owner": "prose",
19184
+ "type": null,
19185
+ "fallback": null,
19186
+ "supportedRange": null,
19187
+ "sources": [
19188
+ "src/components/prose/prose.css"
19189
+ ],
19190
+ "runtimeAssigned": false
19191
+ },
19192
+ {
19193
+ "name": "--brick-prose-measure",
19194
+ "classification": "optional-extension",
19195
+ "scope": "component-instance",
19196
+ "owner": "prose",
19197
+ "type": null,
19198
+ "fallback": null,
19199
+ "supportedRange": null,
19200
+ "sources": [
19201
+ "src/components/prose/prose.css"
19202
+ ],
19203
+ "runtimeAssigned": false
19204
+ },
19205
+ {
19206
+ "name": "--brick-prose-media-radius",
19207
+ "classification": "optional-extension",
19208
+ "scope": "component-instance",
19209
+ "owner": "prose",
19210
+ "type": null,
19211
+ "fallback": null,
19212
+ "supportedRange": null,
19213
+ "sources": [
19214
+ "src/components/prose/prose.css"
19215
+ ],
19216
+ "runtimeAssigned": false
19217
+ },
19218
+ {
19219
+ "name": "--brick-prose-muted-foreground",
19220
+ "classification": "optional-extension",
19221
+ "scope": "component-instance",
19222
+ "owner": "prose",
19223
+ "type": null,
19224
+ "fallback": null,
19225
+ "supportedRange": null,
19226
+ "sources": [
19227
+ "src/components/prose/prose.css"
19228
+ ],
19229
+ "runtimeAssigned": false
19230
+ },
19231
+ {
19232
+ "name": "--brick-prose-section-space",
19233
+ "classification": "optional-extension",
19234
+ "scope": "component-instance",
19235
+ "owner": "prose",
19236
+ "type": null,
19237
+ "fallback": null,
19238
+ "supportedRange": null,
19239
+ "sources": [
19240
+ "src/components/prose/prose.css"
19241
+ ],
19242
+ "runtimeAssigned": false
19243
+ },
19244
+ {
19245
+ "name": "--brick-prose-surface",
19246
+ "classification": "optional-extension",
19247
+ "scope": "component-instance",
19248
+ "owner": "prose",
19249
+ "type": null,
19250
+ "fallback": null,
19251
+ "supportedRange": null,
19252
+ "sources": [
19253
+ "src/components/prose/prose.css"
19254
+ ],
19255
+ "runtimeAssigned": false
19256
+ },
19257
+ {
19258
+ "name": "--brick-prose-table-cell-padding-block",
19259
+ "classification": "optional-extension",
19260
+ "scope": "component-instance",
19261
+ "owner": "prose",
19262
+ "type": null,
19263
+ "fallback": null,
19264
+ "supportedRange": null,
19265
+ "sources": [
19266
+ "src/components/prose/prose.css"
19267
+ ],
19268
+ "runtimeAssigned": false
19269
+ },
19270
+ {
19271
+ "name": "--brick-prose-table-cell-padding-inline",
19272
+ "classification": "optional-extension",
19273
+ "scope": "component-instance",
19274
+ "owner": "prose",
19275
+ "type": null,
19276
+ "fallback": null,
19277
+ "supportedRange": null,
19278
+ "sources": [
19279
+ "src/components/prose/prose.css"
19280
+ ],
19281
+ "runtimeAssigned": false
19282
+ },
17828
19283
  {
17829
19284
  "name": "--brick-radio-checked",
17830
19285
  "classification": "optional-extension",