@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.
- package/README.md +1 -1
- package/dist/agents/blockquote.json +68 -0
- package/dist/agents/blockquote.md +42 -0
- package/dist/agents/code-block.json +20 -4
- package/dist/agents/code-block.md +9 -4
- package/dist/agents/coverage.json +1211 -199
- package/dist/agents/em.json +57 -0
- package/dist/agents/em.md +39 -0
- package/dist/agents/highlight.json +73 -0
- package/dist/agents/highlight.md +43 -0
- package/dist/agents/interface-composition.json +14 -7
- package/dist/agents/interface-composition.md +5 -2
- package/dist/agents/kbd.json +62 -0
- package/dist/agents/kbd.md +40 -0
- package/dist/agents/layer-selection.json +125 -5
- package/dist/agents/layer-selection.md +12 -2
- package/dist/agents/manifest.json +37 -1
- package/dist/agents/mark.json +56 -0
- package/dist/agents/mark.md +38 -0
- package/dist/agents/prose.json +82 -0
- package/dist/agents/prose.md +50 -0
- package/dist/blockquote.d.ts +2 -0
- package/dist/blockquote.d.ts.map +1 -0
- package/dist/blockquote.js +2 -0
- package/dist/blockquote.js.map +1 -0
- package/dist/components/blockquote/Blockquote.d.ts +33 -0
- package/dist/components/blockquote/Blockquote.d.ts.map +1 -0
- package/dist/components/blockquote/Blockquote.js +36 -0
- package/dist/components/blockquote/Blockquote.js.map +1 -0
- package/dist/components/blockquote/index.d.ts +2 -0
- package/dist/components/blockquote/index.d.ts.map +1 -0
- package/dist/components/blockquote/index.js +2 -0
- package/dist/components/blockquote/index.js.map +1 -0
- package/dist/components/code-block/CodeBlock.d.ts +33 -0
- package/dist/components/code-block/CodeBlock.d.ts.map +1 -1
- package/dist/components/code-block/CodeBlock.js +60 -6
- package/dist/components/code-block/CodeBlock.js.map +1 -1
- package/dist/components/code-block/context.d.ts +2 -0
- package/dist/components/code-block/context.d.ts.map +1 -1
- package/dist/components/code-block/context.js.map +1 -1
- package/dist/components/code-block/index.d.ts +1 -1
- package/dist/components/code-block/index.d.ts.map +1 -1
- package/dist/components/code-block/index.js +1 -1
- package/dist/components/code-block/index.js.map +1 -1
- package/dist/components/em/Em.d.ts +9 -0
- package/dist/components/em/Em.d.ts.map +1 -0
- package/dist/components/em/Em.js +10 -0
- package/dist/components/em/Em.js.map +1 -0
- package/dist/components/em/index.d.ts +2 -0
- package/dist/components/em/index.d.ts.map +1 -0
- package/dist/components/em/index.js +2 -0
- package/dist/components/em/index.js.map +1 -0
- package/dist/components/highlight/Highlight.d.ts +9 -0
- package/dist/components/highlight/Highlight.d.ts.map +1 -0
- package/dist/components/highlight/Highlight.js +10 -0
- package/dist/components/highlight/Highlight.js.map +1 -0
- package/dist/components/highlight/index.d.ts +2 -0
- package/dist/components/highlight/index.d.ts.map +1 -0
- package/dist/components/highlight/index.js +2 -0
- package/dist/components/highlight/index.js.map +1 -0
- package/dist/components/kbd/Kbd.d.ts +13 -0
- package/dist/components/kbd/Kbd.d.ts.map +1 -0
- package/dist/components/kbd/Kbd.js +8 -0
- package/dist/components/kbd/Kbd.js.map +1 -0
- package/dist/components/kbd/index.d.ts +2 -0
- package/dist/components/kbd/index.d.ts.map +1 -0
- package/dist/components/kbd/index.js +2 -0
- package/dist/components/kbd/index.js.map +1 -0
- package/dist/components/mark/Mark.d.ts +13 -0
- package/dist/components/mark/Mark.d.ts.map +1 -0
- package/dist/components/mark/Mark.js +8 -0
- package/dist/components/mark/Mark.js.map +1 -0
- package/dist/components/mark/index.d.ts +2 -0
- package/dist/components/mark/index.d.ts.map +1 -0
- package/dist/components/mark/index.js +2 -0
- package/dist/components/mark/index.js.map +1 -0
- package/dist/components/prose/Prose.d.ts +12 -0
- package/dist/components/prose/Prose.d.ts.map +1 -0
- package/dist/components/prose/Prose.js +19 -0
- package/dist/components/prose/Prose.js.map +1 -0
- package/dist/components/prose/index.d.ts +2 -0
- package/dist/components/prose/index.d.ts.map +1 -0
- package/dist/components/prose/index.js +2 -0
- package/dist/components/prose/index.js.map +1 -0
- package/dist/em.d.ts +2 -0
- package/dist/em.d.ts.map +1 -0
- package/dist/em.js +2 -0
- package/dist/em.js.map +1 -0
- package/dist/highlight.d.ts +2 -0
- package/dist/highlight.d.ts.map +1 -0
- package/dist/highlight.js +2 -0
- package/dist/highlight.js.map +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/kbd.d.ts +2 -0
- package/dist/kbd.d.ts.map +1 -0
- package/dist/kbd.js +2 -0
- package/dist/kbd.js.map +1 -0
- package/dist/mark.d.ts +2 -0
- package/dist/mark.d.ts.map +1 -0
- package/dist/mark.js +2 -0
- package/dist/mark.js.map +1 -0
- package/dist/prose.d.ts +2 -0
- package/dist/prose.d.ts.map +1 -0
- package/dist/prose.js +2 -0
- package/dist/prose.js.map +1 -0
- package/dist/styles/blockquote.css +2 -0
- package/dist/styles/blockquote.css.map +1 -0
- package/dist/styles/code-block.css +1 -1
- package/dist/styles/code-block.css.map +1 -1
- package/dist/styles/dropdown-menu.css.map +1 -1
- package/dist/styles/em.css +2 -0
- package/dist/styles/em.css.map +1 -0
- package/dist/styles/highlight.css +2 -0
- package/dist/styles/highlight.css.map +1 -0
- package/dist/styles/kbd.css +2 -0
- package/dist/styles/kbd.css.map +1 -0
- package/dist/styles/mark.css +2 -0
- package/dist/styles/mark.css.map +1 -0
- package/dist/styles/menubar.css.map +1 -1
- package/dist/styles/prose.css +2 -0
- package/dist/styles/prose.css.map +1 -0
- package/dist/styles/slider.css.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/styles.css.map +1 -1
- package/dist/theme-contract.json +1418 -100
- package/package.json +36 -3
package/dist/theme-contract.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"contractVersion": 4,
|
|
4
4
|
"package": {
|
|
5
5
|
"name": "@flowstack-ui/brick",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.12"
|
|
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",
|
|
@@ -1857,6 +1892,18 @@
|
|
|
1857
1892
|
"data-size"
|
|
1858
1893
|
]
|
|
1859
1894
|
},
|
|
1895
|
+
{
|
|
1896
|
+
"id": "em",
|
|
1897
|
+
"source": "src/components/em/Em.tsx",
|
|
1898
|
+
"css": "src/components/em/em.css",
|
|
1899
|
+
"recipes": {},
|
|
1900
|
+
"defaults": {
|
|
1901
|
+
"slot": "em"
|
|
1902
|
+
},
|
|
1903
|
+
"states": [
|
|
1904
|
+
"data-slot"
|
|
1905
|
+
]
|
|
1906
|
+
},
|
|
1860
1907
|
{
|
|
1861
1908
|
"id": "feed",
|
|
1862
1909
|
"source": "src/components/feed/Feed.tsx",
|
|
@@ -2125,6 +2172,31 @@
|
|
|
2125
2172
|
"data-slot"
|
|
2126
2173
|
]
|
|
2127
2174
|
},
|
|
2175
|
+
{
|
|
2176
|
+
"id": "highlight",
|
|
2177
|
+
"source": "src/components/highlight/Highlight.tsx",
|
|
2178
|
+
"css": "src/components/highlight/highlight.css",
|
|
2179
|
+
"recipes": {
|
|
2180
|
+
"HighlightVariant": [
|
|
2181
|
+
"subtle",
|
|
2182
|
+
"solid",
|
|
2183
|
+
"underline"
|
|
2184
|
+
],
|
|
2185
|
+
"HighlightTone": [
|
|
2186
|
+
"accent",
|
|
2187
|
+
"neutral"
|
|
2188
|
+
]
|
|
2189
|
+
},
|
|
2190
|
+
"defaults": {
|
|
2191
|
+
"variant": "subtle",
|
|
2192
|
+
"tone": "accent"
|
|
2193
|
+
},
|
|
2194
|
+
"states": [
|
|
2195
|
+
"data-slot",
|
|
2196
|
+
"data-tone",
|
|
2197
|
+
"data-variant"
|
|
2198
|
+
]
|
|
2199
|
+
},
|
|
2128
2200
|
{
|
|
2129
2201
|
"id": "hover-card",
|
|
2130
2202
|
"source": "src/components/hover-card/HoverCard.tsx",
|
|
@@ -2299,6 +2371,34 @@
|
|
|
2299
2371
|
"data-variant"
|
|
2300
2372
|
]
|
|
2301
2373
|
},
|
|
2374
|
+
{
|
|
2375
|
+
"id": "kbd",
|
|
2376
|
+
"source": "src/components/kbd/Kbd.tsx",
|
|
2377
|
+
"css": "src/components/kbd/kbd.css",
|
|
2378
|
+
"recipes": {
|
|
2379
|
+
"KbdVariant": [
|
|
2380
|
+
"raised",
|
|
2381
|
+
"outline",
|
|
2382
|
+
"subtle",
|
|
2383
|
+
"plain"
|
|
2384
|
+
],
|
|
2385
|
+
"KbdSize": [
|
|
2386
|
+
"sm",
|
|
2387
|
+
"md",
|
|
2388
|
+
"lg"
|
|
2389
|
+
]
|
|
2390
|
+
},
|
|
2391
|
+
"defaults": {
|
|
2392
|
+
"variant": "raised",
|
|
2393
|
+
"size": "md",
|
|
2394
|
+
"slot": "kbd"
|
|
2395
|
+
},
|
|
2396
|
+
"states": [
|
|
2397
|
+
"data-size",
|
|
2398
|
+
"data-slot",
|
|
2399
|
+
"data-variant"
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2302
2402
|
{
|
|
2303
2403
|
"id": "link",
|
|
2304
2404
|
"source": "src/components/link/Link.tsx",
|
|
@@ -2407,6 +2507,32 @@
|
|
|
2407
2507
|
"data-variant"
|
|
2408
2508
|
]
|
|
2409
2509
|
},
|
|
2510
|
+
{
|
|
2511
|
+
"id": "mark",
|
|
2512
|
+
"source": "src/components/mark/Mark.tsx",
|
|
2513
|
+
"css": "src/components/mark/mark.css",
|
|
2514
|
+
"recipes": {
|
|
2515
|
+
"MarkVariant": [
|
|
2516
|
+
"subtle",
|
|
2517
|
+
"solid",
|
|
2518
|
+
"plain"
|
|
2519
|
+
],
|
|
2520
|
+
"MarkTone": [
|
|
2521
|
+
"accent",
|
|
2522
|
+
"neutral"
|
|
2523
|
+
]
|
|
2524
|
+
},
|
|
2525
|
+
"defaults": {
|
|
2526
|
+
"variant": "subtle",
|
|
2527
|
+
"tone": "accent",
|
|
2528
|
+
"slot": "mark"
|
|
2529
|
+
},
|
|
2530
|
+
"states": [
|
|
2531
|
+
"data-slot",
|
|
2532
|
+
"data-tone",
|
|
2533
|
+
"data-variant"
|
|
2534
|
+
]
|
|
2535
|
+
},
|
|
2410
2536
|
{
|
|
2411
2537
|
"id": "menubar",
|
|
2412
2538
|
"source": "src/components/menubar/Menubar.tsx",
|
|
@@ -2806,6 +2932,40 @@
|
|
|
2806
2932
|
"data-tone"
|
|
2807
2933
|
]
|
|
2808
2934
|
},
|
|
2935
|
+
{
|
|
2936
|
+
"id": "prose",
|
|
2937
|
+
"source": "src/components/prose/Prose.tsx",
|
|
2938
|
+
"css": "src/components/prose/prose.css",
|
|
2939
|
+
"recipes": {
|
|
2940
|
+
"ProseElement": [
|
|
2941
|
+
"div",
|
|
2942
|
+
"article",
|
|
2943
|
+
"section"
|
|
2944
|
+
],
|
|
2945
|
+
"ProseSize": [
|
|
2946
|
+
"sm",
|
|
2947
|
+
"md",
|
|
2948
|
+
"lg"
|
|
2949
|
+
],
|
|
2950
|
+
"ProseMeasure": [
|
|
2951
|
+
"narrow",
|
|
2952
|
+
"default",
|
|
2953
|
+
"wide",
|
|
2954
|
+
"none"
|
|
2955
|
+
]
|
|
2956
|
+
},
|
|
2957
|
+
"defaults": {
|
|
2958
|
+
"as": "div",
|
|
2959
|
+
"size": "md",
|
|
2960
|
+
"measure": "default",
|
|
2961
|
+
"slot": "prose"
|
|
2962
|
+
},
|
|
2963
|
+
"states": [
|
|
2964
|
+
"data-measure",
|
|
2965
|
+
"data-size",
|
|
2966
|
+
"data-slot"
|
|
2967
|
+
]
|
|
2968
|
+
},
|
|
2809
2969
|
{
|
|
2810
2970
|
"id": "radio-group",
|
|
2811
2971
|
"source": "src/components/radio-group/RadioGroup.tsx",
|
|
@@ -3874,6 +4034,84 @@
|
|
|
3874
4034
|
],
|
|
3875
4035
|
"runtimeAssigned": false
|
|
3876
4036
|
},
|
|
4037
|
+
{
|
|
4038
|
+
"name": "--_brick-prose-h1-font-size",
|
|
4039
|
+
"classification": "internal",
|
|
4040
|
+
"scope": "implementation",
|
|
4041
|
+
"owner": null,
|
|
4042
|
+
"type": null,
|
|
4043
|
+
"fallback": null,
|
|
4044
|
+
"supportedRange": null,
|
|
4045
|
+
"sources": [
|
|
4046
|
+
"src/components/prose/prose.css"
|
|
4047
|
+
],
|
|
4048
|
+
"runtimeAssigned": false
|
|
4049
|
+
},
|
|
4050
|
+
{
|
|
4051
|
+
"name": "--_brick-prose-h1-line-height",
|
|
4052
|
+
"classification": "internal",
|
|
4053
|
+
"scope": "implementation",
|
|
4054
|
+
"owner": null,
|
|
4055
|
+
"type": null,
|
|
4056
|
+
"fallback": null,
|
|
4057
|
+
"supportedRange": null,
|
|
4058
|
+
"sources": [
|
|
4059
|
+
"src/components/prose/prose.css"
|
|
4060
|
+
],
|
|
4061
|
+
"runtimeAssigned": false
|
|
4062
|
+
},
|
|
4063
|
+
{
|
|
4064
|
+
"name": "--_brick-prose-h2-font-size",
|
|
4065
|
+
"classification": "internal",
|
|
4066
|
+
"scope": "implementation",
|
|
4067
|
+
"owner": null,
|
|
4068
|
+
"type": null,
|
|
4069
|
+
"fallback": null,
|
|
4070
|
+
"supportedRange": null,
|
|
4071
|
+
"sources": [
|
|
4072
|
+
"src/components/prose/prose.css"
|
|
4073
|
+
],
|
|
4074
|
+
"runtimeAssigned": false
|
|
4075
|
+
},
|
|
4076
|
+
{
|
|
4077
|
+
"name": "--_brick-prose-h2-line-height",
|
|
4078
|
+
"classification": "internal",
|
|
4079
|
+
"scope": "implementation",
|
|
4080
|
+
"owner": null,
|
|
4081
|
+
"type": null,
|
|
4082
|
+
"fallback": null,
|
|
4083
|
+
"supportedRange": null,
|
|
4084
|
+
"sources": [
|
|
4085
|
+
"src/components/prose/prose.css"
|
|
4086
|
+
],
|
|
4087
|
+
"runtimeAssigned": false
|
|
4088
|
+
},
|
|
4089
|
+
{
|
|
4090
|
+
"name": "--_brick-prose-h3-font-size",
|
|
4091
|
+
"classification": "internal",
|
|
4092
|
+
"scope": "implementation",
|
|
4093
|
+
"owner": null,
|
|
4094
|
+
"type": null,
|
|
4095
|
+
"fallback": null,
|
|
4096
|
+
"supportedRange": null,
|
|
4097
|
+
"sources": [
|
|
4098
|
+
"src/components/prose/prose.css"
|
|
4099
|
+
],
|
|
4100
|
+
"runtimeAssigned": false
|
|
4101
|
+
},
|
|
4102
|
+
{
|
|
4103
|
+
"name": "--_brick-prose-h3-line-height",
|
|
4104
|
+
"classification": "internal",
|
|
4105
|
+
"scope": "implementation",
|
|
4106
|
+
"owner": null,
|
|
4107
|
+
"type": null,
|
|
4108
|
+
"fallback": null,
|
|
4109
|
+
"supportedRange": null,
|
|
4110
|
+
"sources": [
|
|
4111
|
+
"src/components/prose/prose.css"
|
|
4112
|
+
],
|
|
4113
|
+
"runtimeAssigned": false
|
|
4114
|
+
},
|
|
3877
4115
|
{
|
|
3878
4116
|
"name": "--brick-accordion-background",
|
|
3879
4117
|
"classification": "optional-extension",
|
|
@@ -5442,155 +5680,467 @@
|
|
|
5442
5680
|
"runtimeAssigned": false
|
|
5443
5681
|
},
|
|
5444
5682
|
{
|
|
5445
|
-
"name": "--brick-
|
|
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",
|
|
5683
|
+
"name": "--brick-blockquote-accent",
|
|
5500
5684
|
"classification": "optional-extension",
|
|
5501
5685
|
"scope": "component-instance",
|
|
5502
|
-
"owner": "
|
|
5686
|
+
"owner": "blockquote",
|
|
5503
5687
|
"type": null,
|
|
5504
5688
|
"fallback": null,
|
|
5505
5689
|
"supportedRange": null,
|
|
5506
5690
|
"sources": [
|
|
5507
|
-
"src/components/
|
|
5691
|
+
"src/components/blockquote/blockquote.css"
|
|
5508
5692
|
],
|
|
5509
5693
|
"runtimeAssigned": false
|
|
5510
5694
|
},
|
|
5511
5695
|
{
|
|
5512
|
-
"name": "--brick-
|
|
5696
|
+
"name": "--brick-blockquote-background",
|
|
5513
5697
|
"classification": "optional-extension",
|
|
5514
5698
|
"scope": "component-instance",
|
|
5515
|
-
"owner": "
|
|
5699
|
+
"owner": "blockquote",
|
|
5516
5700
|
"type": null,
|
|
5517
5701
|
"fallback": null,
|
|
5518
5702
|
"supportedRange": null,
|
|
5519
5703
|
"sources": [
|
|
5520
|
-
"src/components/
|
|
5704
|
+
"src/components/blockquote/blockquote.css"
|
|
5521
5705
|
],
|
|
5522
5706
|
"runtimeAssigned": false
|
|
5523
5707
|
},
|
|
5524
5708
|
{
|
|
5525
|
-
"name": "--brick-
|
|
5709
|
+
"name": "--brick-blockquote-border-color",
|
|
5526
5710
|
"classification": "optional-extension",
|
|
5527
5711
|
"scope": "component-instance",
|
|
5528
|
-
"owner": "
|
|
5712
|
+
"owner": "blockquote",
|
|
5529
5713
|
"type": null,
|
|
5530
5714
|
"fallback": null,
|
|
5531
5715
|
"supportedRange": null,
|
|
5532
5716
|
"sources": [
|
|
5533
|
-
"src/components/
|
|
5717
|
+
"src/components/blockquote/blockquote.css"
|
|
5534
5718
|
],
|
|
5535
5719
|
"runtimeAssigned": false
|
|
5536
5720
|
},
|
|
5537
5721
|
{
|
|
5538
|
-
"name": "--brick-
|
|
5722
|
+
"name": "--brick-blockquote-border-width",
|
|
5539
5723
|
"classification": "optional-extension",
|
|
5540
5724
|
"scope": "component-instance",
|
|
5541
|
-
"owner": "
|
|
5725
|
+
"owner": "blockquote",
|
|
5542
5726
|
"type": null,
|
|
5543
5727
|
"fallback": null,
|
|
5544
5728
|
"supportedRange": null,
|
|
5545
5729
|
"sources": [
|
|
5546
|
-
"src/components/
|
|
5730
|
+
"src/components/blockquote/blockquote.css"
|
|
5547
5731
|
],
|
|
5548
5732
|
"runtimeAssigned": false
|
|
5549
5733
|
},
|
|
5550
5734
|
{
|
|
5551
|
-
"name": "--brick-
|
|
5735
|
+
"name": "--brick-blockquote-caption-font-family",
|
|
5552
5736
|
"classification": "optional-extension",
|
|
5553
5737
|
"scope": "component-instance",
|
|
5554
|
-
"owner": "
|
|
5738
|
+
"owner": "blockquote",
|
|
5555
5739
|
"type": null,
|
|
5556
5740
|
"fallback": null,
|
|
5557
5741
|
"supportedRange": null,
|
|
5558
5742
|
"sources": [
|
|
5559
|
-
"src/components/
|
|
5743
|
+
"src/components/blockquote/blockquote.css"
|
|
5560
5744
|
],
|
|
5561
5745
|
"runtimeAssigned": false
|
|
5562
5746
|
},
|
|
5563
5747
|
{
|
|
5564
|
-
"name": "--brick-
|
|
5748
|
+
"name": "--brick-blockquote-caption-font-size",
|
|
5565
5749
|
"classification": "optional-extension",
|
|
5566
5750
|
"scope": "component-instance",
|
|
5567
|
-
"owner": "
|
|
5751
|
+
"owner": "blockquote",
|
|
5568
5752
|
"type": null,
|
|
5569
5753
|
"fallback": null,
|
|
5570
5754
|
"supportedRange": null,
|
|
5571
5755
|
"sources": [
|
|
5572
|
-
"src/components/
|
|
5756
|
+
"src/components/blockquote/blockquote.css"
|
|
5573
5757
|
],
|
|
5574
5758
|
"runtimeAssigned": false
|
|
5575
5759
|
},
|
|
5576
5760
|
{
|
|
5577
|
-
"name": "--brick-
|
|
5761
|
+
"name": "--brick-blockquote-caption-font-weight",
|
|
5578
5762
|
"classification": "optional-extension",
|
|
5579
5763
|
"scope": "component-instance",
|
|
5580
|
-
"owner": "
|
|
5764
|
+
"owner": "blockquote",
|
|
5581
5765
|
"type": null,
|
|
5582
5766
|
"fallback": null,
|
|
5583
5767
|
"supportedRange": null,
|
|
5584
5768
|
"sources": [
|
|
5585
|
-
"src/components/
|
|
5769
|
+
"src/components/blockquote/blockquote.css"
|
|
5586
5770
|
],
|
|
5587
5771
|
"runtimeAssigned": false
|
|
5588
5772
|
},
|
|
5589
5773
|
{
|
|
5590
|
-
"name": "--brick-
|
|
5774
|
+
"name": "--brick-blockquote-caption-letter-spacing",
|
|
5591
5775
|
"classification": "optional-extension",
|
|
5592
5776
|
"scope": "component-instance",
|
|
5593
|
-
"owner": "
|
|
5777
|
+
"owner": "blockquote",
|
|
5778
|
+
"type": null,
|
|
5779
|
+
"fallback": null,
|
|
5780
|
+
"supportedRange": null,
|
|
5781
|
+
"sources": [
|
|
5782
|
+
"src/components/blockquote/blockquote.css"
|
|
5783
|
+
],
|
|
5784
|
+
"runtimeAssigned": false
|
|
5785
|
+
},
|
|
5786
|
+
{
|
|
5787
|
+
"name": "--brick-blockquote-caption-line-height",
|
|
5788
|
+
"classification": "optional-extension",
|
|
5789
|
+
"scope": "component-instance",
|
|
5790
|
+
"owner": "blockquote",
|
|
5791
|
+
"type": null,
|
|
5792
|
+
"fallback": null,
|
|
5793
|
+
"supportedRange": null,
|
|
5794
|
+
"sources": [
|
|
5795
|
+
"src/components/blockquote/blockquote.css"
|
|
5796
|
+
],
|
|
5797
|
+
"runtimeAssigned": false
|
|
5798
|
+
},
|
|
5799
|
+
{
|
|
5800
|
+
"name": "--brick-blockquote-content-font-family",
|
|
5801
|
+
"classification": "optional-extension",
|
|
5802
|
+
"scope": "component-instance",
|
|
5803
|
+
"owner": "blockquote",
|
|
5804
|
+
"type": null,
|
|
5805
|
+
"fallback": null,
|
|
5806
|
+
"supportedRange": null,
|
|
5807
|
+
"sources": [
|
|
5808
|
+
"src/components/blockquote/blockquote.css"
|
|
5809
|
+
],
|
|
5810
|
+
"runtimeAssigned": false
|
|
5811
|
+
},
|
|
5812
|
+
{
|
|
5813
|
+
"name": "--brick-blockquote-content-font-size",
|
|
5814
|
+
"classification": "optional-extension",
|
|
5815
|
+
"scope": "component-instance",
|
|
5816
|
+
"owner": "blockquote",
|
|
5817
|
+
"type": null,
|
|
5818
|
+
"fallback": null,
|
|
5819
|
+
"supportedRange": null,
|
|
5820
|
+
"sources": [
|
|
5821
|
+
"src/components/blockquote/blockquote.css"
|
|
5822
|
+
],
|
|
5823
|
+
"runtimeAssigned": false
|
|
5824
|
+
},
|
|
5825
|
+
{
|
|
5826
|
+
"name": "--brick-blockquote-content-font-weight",
|
|
5827
|
+
"classification": "optional-extension",
|
|
5828
|
+
"scope": "component-instance",
|
|
5829
|
+
"owner": "blockquote",
|
|
5830
|
+
"type": null,
|
|
5831
|
+
"fallback": null,
|
|
5832
|
+
"supportedRange": null,
|
|
5833
|
+
"sources": [
|
|
5834
|
+
"src/components/blockquote/blockquote.css"
|
|
5835
|
+
],
|
|
5836
|
+
"runtimeAssigned": false
|
|
5837
|
+
},
|
|
5838
|
+
{
|
|
5839
|
+
"name": "--brick-blockquote-content-letter-spacing",
|
|
5840
|
+
"classification": "optional-extension",
|
|
5841
|
+
"scope": "component-instance",
|
|
5842
|
+
"owner": "blockquote",
|
|
5843
|
+
"type": null,
|
|
5844
|
+
"fallback": null,
|
|
5845
|
+
"supportedRange": null,
|
|
5846
|
+
"sources": [
|
|
5847
|
+
"src/components/blockquote/blockquote.css"
|
|
5848
|
+
],
|
|
5849
|
+
"runtimeAssigned": false
|
|
5850
|
+
},
|
|
5851
|
+
{
|
|
5852
|
+
"name": "--brick-blockquote-content-line-height",
|
|
5853
|
+
"classification": "optional-extension",
|
|
5854
|
+
"scope": "component-instance",
|
|
5855
|
+
"owner": "blockquote",
|
|
5856
|
+
"type": null,
|
|
5857
|
+
"fallback": null,
|
|
5858
|
+
"supportedRange": null,
|
|
5859
|
+
"sources": [
|
|
5860
|
+
"src/components/blockquote/blockquote.css"
|
|
5861
|
+
],
|
|
5862
|
+
"runtimeAssigned": false
|
|
5863
|
+
},
|
|
5864
|
+
{
|
|
5865
|
+
"name": "--brick-blockquote-foreground",
|
|
5866
|
+
"classification": "optional-extension",
|
|
5867
|
+
"scope": "component-instance",
|
|
5868
|
+
"owner": "blockquote",
|
|
5869
|
+
"type": null,
|
|
5870
|
+
"fallback": null,
|
|
5871
|
+
"supportedRange": null,
|
|
5872
|
+
"sources": [
|
|
5873
|
+
"src/components/blockquote/blockquote.css"
|
|
5874
|
+
],
|
|
5875
|
+
"runtimeAssigned": false
|
|
5876
|
+
},
|
|
5877
|
+
{
|
|
5878
|
+
"name": "--brick-blockquote-gap",
|
|
5879
|
+
"classification": "optional-extension",
|
|
5880
|
+
"scope": "component-instance",
|
|
5881
|
+
"owner": "blockquote",
|
|
5882
|
+
"type": null,
|
|
5883
|
+
"fallback": null,
|
|
5884
|
+
"supportedRange": null,
|
|
5885
|
+
"sources": [
|
|
5886
|
+
"src/components/blockquote/blockquote.css"
|
|
5887
|
+
],
|
|
5888
|
+
"runtimeAssigned": false
|
|
5889
|
+
},
|
|
5890
|
+
{
|
|
5891
|
+
"name": "--brick-blockquote-icon-font-family",
|
|
5892
|
+
"classification": "optional-extension",
|
|
5893
|
+
"scope": "component-instance",
|
|
5894
|
+
"owner": "blockquote",
|
|
5895
|
+
"type": null,
|
|
5896
|
+
"fallback": null,
|
|
5897
|
+
"supportedRange": null,
|
|
5898
|
+
"sources": [
|
|
5899
|
+
"src/components/blockquote/blockquote.css"
|
|
5900
|
+
],
|
|
5901
|
+
"runtimeAssigned": false
|
|
5902
|
+
},
|
|
5903
|
+
{
|
|
5904
|
+
"name": "--brick-blockquote-icon-font-weight",
|
|
5905
|
+
"classification": "optional-extension",
|
|
5906
|
+
"scope": "component-instance",
|
|
5907
|
+
"owner": "blockquote",
|
|
5908
|
+
"type": null,
|
|
5909
|
+
"fallback": null,
|
|
5910
|
+
"supportedRange": null,
|
|
5911
|
+
"sources": [
|
|
5912
|
+
"src/components/blockquote/blockquote.css"
|
|
5913
|
+
],
|
|
5914
|
+
"runtimeAssigned": false
|
|
5915
|
+
},
|
|
5916
|
+
{
|
|
5917
|
+
"name": "--brick-blockquote-icon-line-height",
|
|
5918
|
+
"classification": "optional-extension",
|
|
5919
|
+
"scope": "component-instance",
|
|
5920
|
+
"owner": "blockquote",
|
|
5921
|
+
"type": null,
|
|
5922
|
+
"fallback": null,
|
|
5923
|
+
"supportedRange": null,
|
|
5924
|
+
"sources": [
|
|
5925
|
+
"src/components/blockquote/blockquote.css"
|
|
5926
|
+
],
|
|
5927
|
+
"runtimeAssigned": false
|
|
5928
|
+
},
|
|
5929
|
+
{
|
|
5930
|
+
"name": "--brick-blockquote-icon-size",
|
|
5931
|
+
"classification": "optional-extension",
|
|
5932
|
+
"scope": "component-instance",
|
|
5933
|
+
"owner": "blockquote",
|
|
5934
|
+
"type": null,
|
|
5935
|
+
"fallback": null,
|
|
5936
|
+
"supportedRange": null,
|
|
5937
|
+
"sources": [
|
|
5938
|
+
"src/components/blockquote/blockquote.css"
|
|
5939
|
+
],
|
|
5940
|
+
"runtimeAssigned": false
|
|
5941
|
+
},
|
|
5942
|
+
{
|
|
5943
|
+
"name": "--brick-blockquote-muted-foreground",
|
|
5944
|
+
"classification": "optional-extension",
|
|
5945
|
+
"scope": "component-instance",
|
|
5946
|
+
"owner": "blockquote",
|
|
5947
|
+
"type": null,
|
|
5948
|
+
"fallback": null,
|
|
5949
|
+
"supportedRange": null,
|
|
5950
|
+
"sources": [
|
|
5951
|
+
"src/components/blockquote/blockquote.css"
|
|
5952
|
+
],
|
|
5953
|
+
"runtimeAssigned": false
|
|
5954
|
+
},
|
|
5955
|
+
{
|
|
5956
|
+
"name": "--brick-blockquote-padding-block",
|
|
5957
|
+
"classification": "optional-extension",
|
|
5958
|
+
"scope": "component-instance",
|
|
5959
|
+
"owner": "blockquote",
|
|
5960
|
+
"type": null,
|
|
5961
|
+
"fallback": null,
|
|
5962
|
+
"supportedRange": null,
|
|
5963
|
+
"sources": [
|
|
5964
|
+
"src/components/blockquote/blockquote.css"
|
|
5965
|
+
],
|
|
5966
|
+
"runtimeAssigned": false
|
|
5967
|
+
},
|
|
5968
|
+
{
|
|
5969
|
+
"name": "--brick-blockquote-padding-inline",
|
|
5970
|
+
"classification": "optional-extension",
|
|
5971
|
+
"scope": "component-instance",
|
|
5972
|
+
"owner": "blockquote",
|
|
5973
|
+
"type": null,
|
|
5974
|
+
"fallback": null,
|
|
5975
|
+
"supportedRange": null,
|
|
5976
|
+
"sources": [
|
|
5977
|
+
"src/components/blockquote/blockquote.css"
|
|
5978
|
+
],
|
|
5979
|
+
"runtimeAssigned": false
|
|
5980
|
+
},
|
|
5981
|
+
{
|
|
5982
|
+
"name": "--brick-blockquote-radius",
|
|
5983
|
+
"classification": "optional-extension",
|
|
5984
|
+
"scope": "component-instance",
|
|
5985
|
+
"owner": "blockquote",
|
|
5986
|
+
"type": null,
|
|
5987
|
+
"fallback": null,
|
|
5988
|
+
"supportedRange": null,
|
|
5989
|
+
"sources": [
|
|
5990
|
+
"src/components/blockquote/blockquote.css"
|
|
5991
|
+
],
|
|
5992
|
+
"runtimeAssigned": false
|
|
5993
|
+
},
|
|
5994
|
+
{
|
|
5995
|
+
"name": "--brick-border-focus-offset",
|
|
5996
|
+
"classification": "derived",
|
|
5997
|
+
"type": "dimension",
|
|
5998
|
+
"description": "Brick semantic dimension value for border / focus offset.",
|
|
5999
|
+
"appearance": "invariant",
|
|
6000
|
+
"defaults": {
|
|
6001
|
+
"light": "0.25rem",
|
|
6002
|
+
"dark": "0.25rem"
|
|
6003
|
+
},
|
|
6004
|
+
"sources": [
|
|
6005
|
+
"src/styles/tokens.tokens.json"
|
|
6006
|
+
],
|
|
6007
|
+
"tokenPaths": {
|
|
6008
|
+
"light": "semantic.light.border.focus-offset",
|
|
6009
|
+
"dark": "semantic.dark.border.focus-offset"
|
|
6010
|
+
}
|
|
6011
|
+
},
|
|
6012
|
+
{
|
|
6013
|
+
"name": "--brick-border-focus-width",
|
|
6014
|
+
"classification": "derived",
|
|
6015
|
+
"type": "dimension",
|
|
6016
|
+
"description": "Brick semantic dimension value for border / focus width.",
|
|
6017
|
+
"appearance": "invariant",
|
|
6018
|
+
"defaults": {
|
|
6019
|
+
"light": "2px",
|
|
6020
|
+
"dark": "2px"
|
|
6021
|
+
},
|
|
6022
|
+
"sources": [
|
|
6023
|
+
"src/styles/tokens.tokens.json"
|
|
6024
|
+
],
|
|
6025
|
+
"tokenPaths": {
|
|
6026
|
+
"light": "semantic.light.border.focus-width",
|
|
6027
|
+
"dark": "semantic.dark.border.focus-width"
|
|
6028
|
+
}
|
|
6029
|
+
},
|
|
6030
|
+
{
|
|
6031
|
+
"name": "--brick-border-width",
|
|
6032
|
+
"classification": "derived",
|
|
6033
|
+
"type": "dimension",
|
|
6034
|
+
"description": "Brick semantic dimension value for border / width.",
|
|
6035
|
+
"appearance": "invariant",
|
|
6036
|
+
"defaults": {
|
|
6037
|
+
"light": "1px",
|
|
6038
|
+
"dark": "1px"
|
|
6039
|
+
},
|
|
6040
|
+
"sources": [
|
|
6041
|
+
"src/styles/tokens.tokens.json"
|
|
6042
|
+
],
|
|
6043
|
+
"tokenPaths": {
|
|
6044
|
+
"light": "semantic.light.border.width",
|
|
6045
|
+
"dark": "semantic.dark.border.width"
|
|
6046
|
+
}
|
|
6047
|
+
},
|
|
6048
|
+
{
|
|
6049
|
+
"name": "--brick-bottom-navigation-background",
|
|
6050
|
+
"classification": "optional-extension",
|
|
6051
|
+
"scope": "component-instance",
|
|
6052
|
+
"owner": "bottom-navigation",
|
|
6053
|
+
"type": null,
|
|
6054
|
+
"fallback": null,
|
|
6055
|
+
"supportedRange": null,
|
|
6056
|
+
"sources": [
|
|
6057
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6058
|
+
],
|
|
6059
|
+
"runtimeAssigned": false
|
|
6060
|
+
},
|
|
6061
|
+
{
|
|
6062
|
+
"name": "--brick-bottom-navigation-blurred-background",
|
|
6063
|
+
"classification": "optional-extension",
|
|
6064
|
+
"scope": "component-instance",
|
|
6065
|
+
"owner": "bottom-navigation",
|
|
6066
|
+
"type": null,
|
|
6067
|
+
"fallback": null,
|
|
6068
|
+
"supportedRange": null,
|
|
6069
|
+
"sources": [
|
|
6070
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6071
|
+
],
|
|
6072
|
+
"runtimeAssigned": false
|
|
6073
|
+
},
|
|
6074
|
+
{
|
|
6075
|
+
"name": "--brick-bottom-navigation-border-color",
|
|
6076
|
+
"classification": "optional-extension",
|
|
6077
|
+
"scope": "component-instance",
|
|
6078
|
+
"owner": "bottom-navigation",
|
|
6079
|
+
"type": null,
|
|
6080
|
+
"fallback": null,
|
|
6081
|
+
"supportedRange": null,
|
|
6082
|
+
"sources": [
|
|
6083
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6084
|
+
],
|
|
6085
|
+
"runtimeAssigned": false
|
|
6086
|
+
},
|
|
6087
|
+
{
|
|
6088
|
+
"name": "--brick-bottom-navigation-focus-ring",
|
|
6089
|
+
"classification": "optional-extension",
|
|
6090
|
+
"scope": "component-instance",
|
|
6091
|
+
"owner": "bottom-navigation",
|
|
6092
|
+
"type": null,
|
|
6093
|
+
"fallback": null,
|
|
6094
|
+
"supportedRange": null,
|
|
6095
|
+
"sources": [
|
|
6096
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6097
|
+
],
|
|
6098
|
+
"runtimeAssigned": false
|
|
6099
|
+
},
|
|
6100
|
+
{
|
|
6101
|
+
"name": "--brick-bottom-navigation-foreground",
|
|
6102
|
+
"classification": "optional-extension",
|
|
6103
|
+
"scope": "component-instance",
|
|
6104
|
+
"owner": "bottom-navigation",
|
|
6105
|
+
"type": null,
|
|
6106
|
+
"fallback": null,
|
|
6107
|
+
"supportedRange": null,
|
|
6108
|
+
"sources": [
|
|
6109
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6110
|
+
],
|
|
6111
|
+
"runtimeAssigned": false
|
|
6112
|
+
},
|
|
6113
|
+
{
|
|
6114
|
+
"name": "--brick-bottom-navigation-gap",
|
|
6115
|
+
"classification": "optional-extension",
|
|
6116
|
+
"scope": "component-instance",
|
|
6117
|
+
"owner": "bottom-navigation",
|
|
6118
|
+
"type": null,
|
|
6119
|
+
"fallback": null,
|
|
6120
|
+
"supportedRange": null,
|
|
6121
|
+
"sources": [
|
|
6122
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6123
|
+
],
|
|
6124
|
+
"runtimeAssigned": false
|
|
6125
|
+
},
|
|
6126
|
+
{
|
|
6127
|
+
"name": "--brick-bottom-navigation-icon-indicator-block-size",
|
|
6128
|
+
"classification": "optional-extension",
|
|
6129
|
+
"scope": "component-instance",
|
|
6130
|
+
"owner": "bottom-navigation",
|
|
6131
|
+
"type": null,
|
|
6132
|
+
"fallback": null,
|
|
6133
|
+
"supportedRange": null,
|
|
6134
|
+
"sources": [
|
|
6135
|
+
"src/components/bottom-navigation/bottom-navigation.css"
|
|
6136
|
+
],
|
|
6137
|
+
"runtimeAssigned": false
|
|
6138
|
+
},
|
|
6139
|
+
{
|
|
6140
|
+
"name": "--brick-bottom-navigation-icon-indicator-inline-size",
|
|
6141
|
+
"classification": "optional-extension",
|
|
6142
|
+
"scope": "component-instance",
|
|
6143
|
+
"owner": "bottom-navigation",
|
|
5594
6144
|
"type": null,
|
|
5595
6145
|
"fallback": null,
|
|
5596
6146
|
"supportedRange": null,
|
|
@@ -7488,6 +8038,32 @@
|
|
|
7488
8038
|
],
|
|
7489
8039
|
"runtimeAssigned": false
|
|
7490
8040
|
},
|
|
8041
|
+
{
|
|
8042
|
+
"name": "--brick-code-block-content-padding-block",
|
|
8043
|
+
"classification": "optional-extension",
|
|
8044
|
+
"scope": "component-instance",
|
|
8045
|
+
"owner": "code-block",
|
|
8046
|
+
"type": null,
|
|
8047
|
+
"fallback": null,
|
|
8048
|
+
"supportedRange": null,
|
|
8049
|
+
"sources": [
|
|
8050
|
+
"src/components/code-block/code-block.css"
|
|
8051
|
+
],
|
|
8052
|
+
"runtimeAssigned": false
|
|
8053
|
+
},
|
|
8054
|
+
{
|
|
8055
|
+
"name": "--brick-code-block-content-padding-inline",
|
|
8056
|
+
"classification": "optional-extension",
|
|
8057
|
+
"scope": "component-instance",
|
|
8058
|
+
"owner": "code-block",
|
|
8059
|
+
"type": null,
|
|
8060
|
+
"fallback": null,
|
|
8061
|
+
"supportedRange": null,
|
|
8062
|
+
"sources": [
|
|
8063
|
+
"src/components/code-block/code-block.css"
|
|
8064
|
+
],
|
|
8065
|
+
"runtimeAssigned": false
|
|
8066
|
+
},
|
|
7491
8067
|
{
|
|
7492
8068
|
"name": "--brick-code-block-font-family",
|
|
7493
8069
|
"classification": "optional-extension",
|
|
@@ -7579,6 +8155,45 @@
|
|
|
7579
8155
|
],
|
|
7580
8156
|
"runtimeAssigned": false
|
|
7581
8157
|
},
|
|
8158
|
+
{
|
|
8159
|
+
"name": "--brick-code-block-line-added-background",
|
|
8160
|
+
"classification": "optional-extension",
|
|
8161
|
+
"scope": "component-instance",
|
|
8162
|
+
"owner": "code-block",
|
|
8163
|
+
"type": null,
|
|
8164
|
+
"fallback": null,
|
|
8165
|
+
"supportedRange": null,
|
|
8166
|
+
"sources": [
|
|
8167
|
+
"src/components/code-block/code-block.css"
|
|
8168
|
+
],
|
|
8169
|
+
"runtimeAssigned": false
|
|
8170
|
+
},
|
|
8171
|
+
{
|
|
8172
|
+
"name": "--brick-code-block-line-added-border",
|
|
8173
|
+
"classification": "optional-extension",
|
|
8174
|
+
"scope": "component-instance",
|
|
8175
|
+
"owner": "code-block",
|
|
8176
|
+
"type": null,
|
|
8177
|
+
"fallback": null,
|
|
8178
|
+
"supportedRange": null,
|
|
8179
|
+
"sources": [
|
|
8180
|
+
"src/components/code-block/code-block.css"
|
|
8181
|
+
],
|
|
8182
|
+
"runtimeAssigned": false
|
|
8183
|
+
},
|
|
8184
|
+
{
|
|
8185
|
+
"name": "--brick-code-block-line-focus-background",
|
|
8186
|
+
"classification": "optional-extension",
|
|
8187
|
+
"scope": "component-instance",
|
|
8188
|
+
"owner": "code-block",
|
|
8189
|
+
"type": null,
|
|
8190
|
+
"fallback": null,
|
|
8191
|
+
"supportedRange": null,
|
|
8192
|
+
"sources": [
|
|
8193
|
+
"src/components/code-block/code-block.css"
|
|
8194
|
+
],
|
|
8195
|
+
"runtimeAssigned": false
|
|
8196
|
+
},
|
|
7582
8197
|
{
|
|
7583
8198
|
"name": "--brick-code-block-line-height",
|
|
7584
8199
|
"classification": "optional-extension",
|
|
@@ -7592,6 +8207,85 @@
|
|
|
7592
8207
|
],
|
|
7593
8208
|
"runtimeAssigned": false
|
|
7594
8209
|
},
|
|
8210
|
+
{
|
|
8211
|
+
"name": "--brick-code-block-line-highlight-background",
|
|
8212
|
+
"classification": "optional-extension",
|
|
8213
|
+
"scope": "component-instance",
|
|
8214
|
+
"owner": "code-block",
|
|
8215
|
+
"type": null,
|
|
8216
|
+
"fallback": null,
|
|
8217
|
+
"supportedRange": null,
|
|
8218
|
+
"sources": [
|
|
8219
|
+
"src/components/code-block/code-block.css"
|
|
8220
|
+
],
|
|
8221
|
+
"runtimeAssigned": false
|
|
8222
|
+
},
|
|
8223
|
+
{
|
|
8224
|
+
"name": "--brick-code-block-line-number-foreground",
|
|
8225
|
+
"classification": "optional-extension",
|
|
8226
|
+
"scope": "component-instance",
|
|
8227
|
+
"owner": "code-block",
|
|
8228
|
+
"type": null,
|
|
8229
|
+
"fallback": null,
|
|
8230
|
+
"supportedRange": null,
|
|
8231
|
+
"sources": [
|
|
8232
|
+
"src/components/code-block/code-block.css"
|
|
8233
|
+
],
|
|
8234
|
+
"runtimeAssigned": false
|
|
8235
|
+
},
|
|
8236
|
+
{
|
|
8237
|
+
"name": "--brick-code-block-line-number-width",
|
|
8238
|
+
"classification": "optional-extension",
|
|
8239
|
+
"scope": "component-instance",
|
|
8240
|
+
"owner": "code-block",
|
|
8241
|
+
"type": null,
|
|
8242
|
+
"fallback": null,
|
|
8243
|
+
"supportedRange": null,
|
|
8244
|
+
"sources": [
|
|
8245
|
+
"src/components/code-block/code-block.css"
|
|
8246
|
+
],
|
|
8247
|
+
"runtimeAssigned": false
|
|
8248
|
+
},
|
|
8249
|
+
{
|
|
8250
|
+
"name": "--brick-code-block-line-removed-background",
|
|
8251
|
+
"classification": "optional-extension",
|
|
8252
|
+
"scope": "component-instance",
|
|
8253
|
+
"owner": "code-block",
|
|
8254
|
+
"type": null,
|
|
8255
|
+
"fallback": null,
|
|
8256
|
+
"supportedRange": null,
|
|
8257
|
+
"sources": [
|
|
8258
|
+
"src/components/code-block/code-block.css"
|
|
8259
|
+
],
|
|
8260
|
+
"runtimeAssigned": false
|
|
8261
|
+
},
|
|
8262
|
+
{
|
|
8263
|
+
"name": "--brick-code-block-line-removed-border",
|
|
8264
|
+
"classification": "optional-extension",
|
|
8265
|
+
"scope": "component-instance",
|
|
8266
|
+
"owner": "code-block",
|
|
8267
|
+
"type": null,
|
|
8268
|
+
"fallback": null,
|
|
8269
|
+
"supportedRange": null,
|
|
8270
|
+
"sources": [
|
|
8271
|
+
"src/components/code-block/code-block.css"
|
|
8272
|
+
],
|
|
8273
|
+
"runtimeAssigned": false
|
|
8274
|
+
},
|
|
8275
|
+
{
|
|
8276
|
+
"name": "--brick-code-block-max-block-size",
|
|
8277
|
+
"classification": "optional-extension",
|
|
8278
|
+
"scope": "component-instance",
|
|
8279
|
+
"owner": "code-block",
|
|
8280
|
+
"type": null,
|
|
8281
|
+
"fallback": null,
|
|
8282
|
+
"supportedRange": null,
|
|
8283
|
+
"sources": [
|
|
8284
|
+
"src/components/code-block/CodeBlock.tsx",
|
|
8285
|
+
"src/components/code-block/code-block.css"
|
|
8286
|
+
],
|
|
8287
|
+
"runtimeAssigned": true
|
|
8288
|
+
},
|
|
7595
8289
|
{
|
|
7596
8290
|
"name": "--brick-code-block-radius",
|
|
7597
8291
|
"classification": "optional-extension",
|
|
@@ -11244,15 +11938,28 @@
|
|
|
11244
11938
|
"runtimeAssigned": false
|
|
11245
11939
|
},
|
|
11246
11940
|
{
|
|
11247
|
-
"name": "--brick-dropdown-menu-shortcut-foreground",
|
|
11941
|
+
"name": "--brick-dropdown-menu-shortcut-foreground",
|
|
11942
|
+
"classification": "optional-extension",
|
|
11943
|
+
"scope": "component-instance",
|
|
11944
|
+
"owner": "dropdown-menu",
|
|
11945
|
+
"type": null,
|
|
11946
|
+
"fallback": null,
|
|
11947
|
+
"supportedRange": null,
|
|
11948
|
+
"sources": [
|
|
11949
|
+
"src/components/dropdown-menu/dropdown-menu.css"
|
|
11950
|
+
],
|
|
11951
|
+
"runtimeAssigned": false
|
|
11952
|
+
},
|
|
11953
|
+
{
|
|
11954
|
+
"name": "--brick-em-font-style",
|
|
11248
11955
|
"classification": "optional-extension",
|
|
11249
11956
|
"scope": "component-instance",
|
|
11250
|
-
"owner": "
|
|
11957
|
+
"owner": "em",
|
|
11251
11958
|
"type": null,
|
|
11252
11959
|
"fallback": null,
|
|
11253
11960
|
"supportedRange": null,
|
|
11254
11961
|
"sources": [
|
|
11255
|
-
"src/components/
|
|
11962
|
+
"src/components/em/em.css"
|
|
11256
11963
|
],
|
|
11257
11964
|
"runtimeAssigned": false
|
|
11258
11965
|
},
|
|
@@ -13337,6 +14044,97 @@
|
|
|
13337
14044
|
],
|
|
13338
14045
|
"runtimeAssigned": false
|
|
13339
14046
|
},
|
|
14047
|
+
{
|
|
14048
|
+
"name": "--brick-highlight-background",
|
|
14049
|
+
"classification": "optional-extension",
|
|
14050
|
+
"scope": "component-instance",
|
|
14051
|
+
"owner": "highlight",
|
|
14052
|
+
"type": null,
|
|
14053
|
+
"fallback": null,
|
|
14054
|
+
"supportedRange": null,
|
|
14055
|
+
"sources": [
|
|
14056
|
+
"src/components/highlight/highlight.css"
|
|
14057
|
+
],
|
|
14058
|
+
"runtimeAssigned": false
|
|
14059
|
+
},
|
|
14060
|
+
{
|
|
14061
|
+
"name": "--brick-highlight-decoration-color",
|
|
14062
|
+
"classification": "optional-extension",
|
|
14063
|
+
"scope": "component-instance",
|
|
14064
|
+
"owner": "highlight",
|
|
14065
|
+
"type": null,
|
|
14066
|
+
"fallback": null,
|
|
14067
|
+
"supportedRange": null,
|
|
14068
|
+
"sources": [
|
|
14069
|
+
"src/components/highlight/highlight.css"
|
|
14070
|
+
],
|
|
14071
|
+
"runtimeAssigned": false
|
|
14072
|
+
},
|
|
14073
|
+
{
|
|
14074
|
+
"name": "--brick-highlight-decoration-offset",
|
|
14075
|
+
"classification": "optional-extension",
|
|
14076
|
+
"scope": "component-instance",
|
|
14077
|
+
"owner": "highlight",
|
|
14078
|
+
"type": null,
|
|
14079
|
+
"fallback": null,
|
|
14080
|
+
"supportedRange": null,
|
|
14081
|
+
"sources": [
|
|
14082
|
+
"src/components/highlight/highlight.css"
|
|
14083
|
+
],
|
|
14084
|
+
"runtimeAssigned": false
|
|
14085
|
+
},
|
|
14086
|
+
{
|
|
14087
|
+
"name": "--brick-highlight-decoration-thickness",
|
|
14088
|
+
"classification": "optional-extension",
|
|
14089
|
+
"scope": "component-instance",
|
|
14090
|
+
"owner": "highlight",
|
|
14091
|
+
"type": null,
|
|
14092
|
+
"fallback": null,
|
|
14093
|
+
"supportedRange": null,
|
|
14094
|
+
"sources": [
|
|
14095
|
+
"src/components/highlight/highlight.css"
|
|
14096
|
+
],
|
|
14097
|
+
"runtimeAssigned": false
|
|
14098
|
+
},
|
|
14099
|
+
{
|
|
14100
|
+
"name": "--brick-highlight-foreground",
|
|
14101
|
+
"classification": "optional-extension",
|
|
14102
|
+
"scope": "component-instance",
|
|
14103
|
+
"owner": "highlight",
|
|
14104
|
+
"type": null,
|
|
14105
|
+
"fallback": null,
|
|
14106
|
+
"supportedRange": null,
|
|
14107
|
+
"sources": [
|
|
14108
|
+
"src/components/highlight/highlight.css"
|
|
14109
|
+
],
|
|
14110
|
+
"runtimeAssigned": false
|
|
14111
|
+
},
|
|
14112
|
+
{
|
|
14113
|
+
"name": "--brick-highlight-padding-inline",
|
|
14114
|
+
"classification": "optional-extension",
|
|
14115
|
+
"scope": "component-instance",
|
|
14116
|
+
"owner": "highlight",
|
|
14117
|
+
"type": null,
|
|
14118
|
+
"fallback": null,
|
|
14119
|
+
"supportedRange": null,
|
|
14120
|
+
"sources": [
|
|
14121
|
+
"src/components/highlight/highlight.css"
|
|
14122
|
+
],
|
|
14123
|
+
"runtimeAssigned": false
|
|
14124
|
+
},
|
|
14125
|
+
{
|
|
14126
|
+
"name": "--brick-highlight-radius",
|
|
14127
|
+
"classification": "optional-extension",
|
|
14128
|
+
"scope": "component-instance",
|
|
14129
|
+
"owner": "highlight",
|
|
14130
|
+
"type": null,
|
|
14131
|
+
"fallback": null,
|
|
14132
|
+
"supportedRange": null,
|
|
14133
|
+
"sources": [
|
|
14134
|
+
"src/components/highlight/highlight.css"
|
|
14135
|
+
],
|
|
14136
|
+
"runtimeAssigned": false
|
|
14137
|
+
},
|
|
13340
14138
|
{
|
|
13341
14139
|
"name": "--brick-hover-card-background",
|
|
13342
14140
|
"classification": "optional-extension",
|
|
@@ -14330,6 +15128,175 @@
|
|
|
14330
15128
|
],
|
|
14331
15129
|
"runtimeAssigned": false
|
|
14332
15130
|
},
|
|
15131
|
+
{
|
|
15132
|
+
"name": "--brick-kbd-background",
|
|
15133
|
+
"classification": "optional-extension",
|
|
15134
|
+
"scope": "component-instance",
|
|
15135
|
+
"owner": "kbd",
|
|
15136
|
+
"type": null,
|
|
15137
|
+
"fallback": null,
|
|
15138
|
+
"supportedRange": null,
|
|
15139
|
+
"sources": [
|
|
15140
|
+
"src/components/kbd/kbd.css"
|
|
15141
|
+
],
|
|
15142
|
+
"runtimeAssigned": false
|
|
15143
|
+
},
|
|
15144
|
+
{
|
|
15145
|
+
"name": "--brick-kbd-border-block-end-color",
|
|
15146
|
+
"classification": "optional-extension",
|
|
15147
|
+
"scope": "component-instance",
|
|
15148
|
+
"owner": "kbd",
|
|
15149
|
+
"type": null,
|
|
15150
|
+
"fallback": null,
|
|
15151
|
+
"supportedRange": null,
|
|
15152
|
+
"sources": [
|
|
15153
|
+
"src/components/kbd/kbd.css"
|
|
15154
|
+
],
|
|
15155
|
+
"runtimeAssigned": false
|
|
15156
|
+
},
|
|
15157
|
+
{
|
|
15158
|
+
"name": "--brick-kbd-border-color",
|
|
15159
|
+
"classification": "optional-extension",
|
|
15160
|
+
"scope": "component-instance",
|
|
15161
|
+
"owner": "kbd",
|
|
15162
|
+
"type": null,
|
|
15163
|
+
"fallback": null,
|
|
15164
|
+
"supportedRange": null,
|
|
15165
|
+
"sources": [
|
|
15166
|
+
"src/components/kbd/kbd.css"
|
|
15167
|
+
],
|
|
15168
|
+
"runtimeAssigned": false
|
|
15169
|
+
},
|
|
15170
|
+
{
|
|
15171
|
+
"name": "--brick-kbd-font-family",
|
|
15172
|
+
"classification": "optional-extension",
|
|
15173
|
+
"scope": "component-instance",
|
|
15174
|
+
"owner": "kbd",
|
|
15175
|
+
"type": null,
|
|
15176
|
+
"fallback": null,
|
|
15177
|
+
"supportedRange": null,
|
|
15178
|
+
"sources": [
|
|
15179
|
+
"src/components/kbd/kbd.css"
|
|
15180
|
+
],
|
|
15181
|
+
"runtimeAssigned": false
|
|
15182
|
+
},
|
|
15183
|
+
{
|
|
15184
|
+
"name": "--brick-kbd-font-size",
|
|
15185
|
+
"classification": "optional-extension",
|
|
15186
|
+
"scope": "component-instance",
|
|
15187
|
+
"owner": "kbd",
|
|
15188
|
+
"type": null,
|
|
15189
|
+
"fallback": null,
|
|
15190
|
+
"supportedRange": null,
|
|
15191
|
+
"sources": [
|
|
15192
|
+
"src/components/kbd/kbd.css"
|
|
15193
|
+
],
|
|
15194
|
+
"runtimeAssigned": false
|
|
15195
|
+
},
|
|
15196
|
+
{
|
|
15197
|
+
"name": "--brick-kbd-font-weight",
|
|
15198
|
+
"classification": "optional-extension",
|
|
15199
|
+
"scope": "component-instance",
|
|
15200
|
+
"owner": "kbd",
|
|
15201
|
+
"type": null,
|
|
15202
|
+
"fallback": null,
|
|
15203
|
+
"supportedRange": null,
|
|
15204
|
+
"sources": [
|
|
15205
|
+
"src/components/kbd/kbd.css"
|
|
15206
|
+
],
|
|
15207
|
+
"runtimeAssigned": false
|
|
15208
|
+
},
|
|
15209
|
+
{
|
|
15210
|
+
"name": "--brick-kbd-foreground",
|
|
15211
|
+
"classification": "optional-extension",
|
|
15212
|
+
"scope": "component-instance",
|
|
15213
|
+
"owner": "kbd",
|
|
15214
|
+
"type": null,
|
|
15215
|
+
"fallback": null,
|
|
15216
|
+
"supportedRange": null,
|
|
15217
|
+
"sources": [
|
|
15218
|
+
"src/components/kbd/kbd.css"
|
|
15219
|
+
],
|
|
15220
|
+
"runtimeAssigned": false
|
|
15221
|
+
},
|
|
15222
|
+
{
|
|
15223
|
+
"name": "--brick-kbd-letter-spacing",
|
|
15224
|
+
"classification": "optional-extension",
|
|
15225
|
+
"scope": "component-instance",
|
|
15226
|
+
"owner": "kbd",
|
|
15227
|
+
"type": null,
|
|
15228
|
+
"fallback": null,
|
|
15229
|
+
"supportedRange": null,
|
|
15230
|
+
"sources": [
|
|
15231
|
+
"src/components/kbd/kbd.css"
|
|
15232
|
+
],
|
|
15233
|
+
"runtimeAssigned": false
|
|
15234
|
+
},
|
|
15235
|
+
{
|
|
15236
|
+
"name": "--brick-kbd-line-height",
|
|
15237
|
+
"classification": "optional-extension",
|
|
15238
|
+
"scope": "component-instance",
|
|
15239
|
+
"owner": "kbd",
|
|
15240
|
+
"type": null,
|
|
15241
|
+
"fallback": null,
|
|
15242
|
+
"supportedRange": null,
|
|
15243
|
+
"sources": [
|
|
15244
|
+
"src/components/kbd/kbd.css"
|
|
15245
|
+
],
|
|
15246
|
+
"runtimeAssigned": false
|
|
15247
|
+
},
|
|
15248
|
+
{
|
|
15249
|
+
"name": "--brick-kbd-min-block-size",
|
|
15250
|
+
"classification": "optional-extension",
|
|
15251
|
+
"scope": "component-instance",
|
|
15252
|
+
"owner": "kbd",
|
|
15253
|
+
"type": null,
|
|
15254
|
+
"fallback": null,
|
|
15255
|
+
"supportedRange": null,
|
|
15256
|
+
"sources": [
|
|
15257
|
+
"src/components/kbd/kbd.css"
|
|
15258
|
+
],
|
|
15259
|
+
"runtimeAssigned": false
|
|
15260
|
+
},
|
|
15261
|
+
{
|
|
15262
|
+
"name": "--brick-kbd-padding-inline",
|
|
15263
|
+
"classification": "optional-extension",
|
|
15264
|
+
"scope": "component-instance",
|
|
15265
|
+
"owner": "kbd",
|
|
15266
|
+
"type": null,
|
|
15267
|
+
"fallback": null,
|
|
15268
|
+
"supportedRange": null,
|
|
15269
|
+
"sources": [
|
|
15270
|
+
"src/components/kbd/kbd.css"
|
|
15271
|
+
],
|
|
15272
|
+
"runtimeAssigned": false
|
|
15273
|
+
},
|
|
15274
|
+
{
|
|
15275
|
+
"name": "--brick-kbd-radius",
|
|
15276
|
+
"classification": "optional-extension",
|
|
15277
|
+
"scope": "component-instance",
|
|
15278
|
+
"owner": "kbd",
|
|
15279
|
+
"type": null,
|
|
15280
|
+
"fallback": null,
|
|
15281
|
+
"supportedRange": null,
|
|
15282
|
+
"sources": [
|
|
15283
|
+
"src/components/kbd/kbd.css"
|
|
15284
|
+
],
|
|
15285
|
+
"runtimeAssigned": false
|
|
15286
|
+
},
|
|
15287
|
+
{
|
|
15288
|
+
"name": "--brick-kbd-shadow",
|
|
15289
|
+
"classification": "optional-extension",
|
|
15290
|
+
"scope": "component-instance",
|
|
15291
|
+
"owner": "kbd",
|
|
15292
|
+
"type": null,
|
|
15293
|
+
"fallback": null,
|
|
15294
|
+
"supportedRange": null,
|
|
15295
|
+
"sources": [
|
|
15296
|
+
"src/components/kbd/kbd.css"
|
|
15297
|
+
],
|
|
15298
|
+
"runtimeAssigned": false
|
|
15299
|
+
},
|
|
14333
15300
|
{
|
|
14334
15301
|
"name": "--brick-layer-base",
|
|
14335
15302
|
"classification": "derived",
|
|
@@ -14757,7 +15724,59 @@
|
|
|
14757
15724
|
"runtimeAssigned": false
|
|
14758
15725
|
},
|
|
14759
15726
|
{
|
|
14760
|
-
"name": "--brick-list-marker-gap",
|
|
15727
|
+
"name": "--brick-list-marker-gap",
|
|
15728
|
+
"classification": "optional-extension",
|
|
15729
|
+
"scope": "component-instance",
|
|
15730
|
+
"owner": "list",
|
|
15731
|
+
"type": null,
|
|
15732
|
+
"fallback": null,
|
|
15733
|
+
"supportedRange": null,
|
|
15734
|
+
"sources": [
|
|
15735
|
+
"src/components/list/list.css"
|
|
15736
|
+
],
|
|
15737
|
+
"runtimeAssigned": false
|
|
15738
|
+
},
|
|
15739
|
+
{
|
|
15740
|
+
"name": "--brick-list-marker-style",
|
|
15741
|
+
"classification": "optional-extension",
|
|
15742
|
+
"scope": "component-instance",
|
|
15743
|
+
"owner": "list",
|
|
15744
|
+
"type": null,
|
|
15745
|
+
"fallback": null,
|
|
15746
|
+
"supportedRange": null,
|
|
15747
|
+
"sources": [
|
|
15748
|
+
"src/components/list/list.css"
|
|
15749
|
+
],
|
|
15750
|
+
"runtimeAssigned": false
|
|
15751
|
+
},
|
|
15752
|
+
{
|
|
15753
|
+
"name": "--brick-list-nested-inset",
|
|
15754
|
+
"classification": "optional-extension",
|
|
15755
|
+
"scope": "component-instance",
|
|
15756
|
+
"owner": "list",
|
|
15757
|
+
"type": null,
|
|
15758
|
+
"fallback": null,
|
|
15759
|
+
"supportedRange": null,
|
|
15760
|
+
"sources": [
|
|
15761
|
+
"src/components/list/list.css"
|
|
15762
|
+
],
|
|
15763
|
+
"runtimeAssigned": false
|
|
15764
|
+
},
|
|
15765
|
+
{
|
|
15766
|
+
"name": "--brick-list-part-align",
|
|
15767
|
+
"classification": "optional-extension",
|
|
15768
|
+
"scope": "component-instance",
|
|
15769
|
+
"owner": "list",
|
|
15770
|
+
"type": null,
|
|
15771
|
+
"fallback": null,
|
|
15772
|
+
"supportedRange": null,
|
|
15773
|
+
"sources": [
|
|
15774
|
+
"src/components/list/list.css"
|
|
15775
|
+
],
|
|
15776
|
+
"runtimeAssigned": false
|
|
15777
|
+
},
|
|
15778
|
+
{
|
|
15779
|
+
"name": "--brick-list-radius",
|
|
14761
15780
|
"classification": "optional-extension",
|
|
14762
15781
|
"scope": "component-instance",
|
|
14763
15782
|
"owner": "list",
|
|
@@ -14770,7 +15789,7 @@
|
|
|
14770
15789
|
"runtimeAssigned": false
|
|
14771
15790
|
},
|
|
14772
15791
|
{
|
|
14773
|
-
"name": "--brick-list-
|
|
15792
|
+
"name": "--brick-list-row-gap",
|
|
14774
15793
|
"classification": "optional-extension",
|
|
14775
15794
|
"scope": "component-instance",
|
|
14776
15795
|
"owner": "list",
|
|
@@ -14783,7 +15802,7 @@
|
|
|
14783
15802
|
"runtimeAssigned": false
|
|
14784
15803
|
},
|
|
14785
15804
|
{
|
|
14786
|
-
"name": "--brick-list-
|
|
15805
|
+
"name": "--brick-list-row-padding-block",
|
|
14787
15806
|
"classification": "optional-extension",
|
|
14788
15807
|
"scope": "component-instance",
|
|
14789
15808
|
"owner": "list",
|
|
@@ -14796,7 +15815,7 @@
|
|
|
14796
15815
|
"runtimeAssigned": false
|
|
14797
15816
|
},
|
|
14798
15817
|
{
|
|
14799
|
-
"name": "--brick-list-
|
|
15818
|
+
"name": "--brick-list-row-padding-inline",
|
|
14800
15819
|
"classification": "optional-extension",
|
|
14801
15820
|
"scope": "component-instance",
|
|
14802
15821
|
"owner": "list",
|
|
@@ -14809,7 +15828,7 @@
|
|
|
14809
15828
|
"runtimeAssigned": false
|
|
14810
15829
|
},
|
|
14811
15830
|
{
|
|
14812
|
-
"name": "--brick-list-
|
|
15831
|
+
"name": "--brick-list-title-color",
|
|
14813
15832
|
"classification": "optional-extension",
|
|
14814
15833
|
"scope": "component-instance",
|
|
14815
15834
|
"owner": "list",
|
|
@@ -14822,7 +15841,7 @@
|
|
|
14822
15841
|
"runtimeAssigned": false
|
|
14823
15842
|
},
|
|
14824
15843
|
{
|
|
14825
|
-
"name": "--brick-list-
|
|
15844
|
+
"name": "--brick-list-title-font-size",
|
|
14826
15845
|
"classification": "optional-extension",
|
|
14827
15846
|
"scope": "component-instance",
|
|
14828
15847
|
"owner": "list",
|
|
@@ -14835,7 +15854,7 @@
|
|
|
14835
15854
|
"runtimeAssigned": false
|
|
14836
15855
|
},
|
|
14837
15856
|
{
|
|
14838
|
-
"name": "--brick-list-
|
|
15857
|
+
"name": "--brick-list-title-line-height",
|
|
14839
15858
|
"classification": "optional-extension",
|
|
14840
15859
|
"scope": "component-instance",
|
|
14841
15860
|
"owner": "list",
|
|
@@ -14848,54 +15867,54 @@
|
|
|
14848
15867
|
"runtimeAssigned": false
|
|
14849
15868
|
},
|
|
14850
15869
|
{
|
|
14851
|
-
"name": "--brick-
|
|
15870
|
+
"name": "--brick-mark-background",
|
|
14852
15871
|
"classification": "optional-extension",
|
|
14853
15872
|
"scope": "component-instance",
|
|
14854
|
-
"owner": "
|
|
15873
|
+
"owner": "mark",
|
|
14855
15874
|
"type": null,
|
|
14856
15875
|
"fallback": null,
|
|
14857
15876
|
"supportedRange": null,
|
|
14858
15877
|
"sources": [
|
|
14859
|
-
"src/components/
|
|
15878
|
+
"src/components/mark/mark.css"
|
|
14860
15879
|
],
|
|
14861
15880
|
"runtimeAssigned": false
|
|
14862
15881
|
},
|
|
14863
15882
|
{
|
|
14864
|
-
"name": "--brick-
|
|
15883
|
+
"name": "--brick-mark-foreground",
|
|
14865
15884
|
"classification": "optional-extension",
|
|
14866
15885
|
"scope": "component-instance",
|
|
14867
|
-
"owner": "
|
|
15886
|
+
"owner": "mark",
|
|
14868
15887
|
"type": null,
|
|
14869
15888
|
"fallback": null,
|
|
14870
15889
|
"supportedRange": null,
|
|
14871
15890
|
"sources": [
|
|
14872
|
-
"src/components/
|
|
15891
|
+
"src/components/mark/mark.css"
|
|
14873
15892
|
],
|
|
14874
15893
|
"runtimeAssigned": false
|
|
14875
15894
|
},
|
|
14876
15895
|
{
|
|
14877
|
-
"name": "--brick-
|
|
15896
|
+
"name": "--brick-mark-padding-inline",
|
|
14878
15897
|
"classification": "optional-extension",
|
|
14879
15898
|
"scope": "component-instance",
|
|
14880
|
-
"owner": "
|
|
15899
|
+
"owner": "mark",
|
|
14881
15900
|
"type": null,
|
|
14882
15901
|
"fallback": null,
|
|
14883
15902
|
"supportedRange": null,
|
|
14884
15903
|
"sources": [
|
|
14885
|
-
"src/components/
|
|
15904
|
+
"src/components/mark/mark.css"
|
|
14886
15905
|
],
|
|
14887
15906
|
"runtimeAssigned": false
|
|
14888
15907
|
},
|
|
14889
15908
|
{
|
|
14890
|
-
"name": "--brick-
|
|
15909
|
+
"name": "--brick-mark-radius",
|
|
14891
15910
|
"classification": "optional-extension",
|
|
14892
15911
|
"scope": "component-instance",
|
|
14893
|
-
"owner": "
|
|
15912
|
+
"owner": "mark",
|
|
14894
15913
|
"type": null,
|
|
14895
15914
|
"fallback": null,
|
|
14896
15915
|
"supportedRange": null,
|
|
14897
15916
|
"sources": [
|
|
14898
|
-
"src/components/
|
|
15917
|
+
"src/components/mark/mark.css"
|
|
14899
15918
|
],
|
|
14900
15919
|
"runtimeAssigned": false
|
|
14901
15920
|
},
|
|
@@ -17825,6 +18844,305 @@
|
|
|
17825
18844
|
],
|
|
17826
18845
|
"runtimeAssigned": false
|
|
17827
18846
|
},
|
|
18847
|
+
{
|
|
18848
|
+
"name": "--brick-prose-accent",
|
|
18849
|
+
"classification": "optional-extension",
|
|
18850
|
+
"scope": "component-instance",
|
|
18851
|
+
"owner": "prose",
|
|
18852
|
+
"type": null,
|
|
18853
|
+
"fallback": null,
|
|
18854
|
+
"supportedRange": null,
|
|
18855
|
+
"sources": [
|
|
18856
|
+
"src/components/prose/prose.css"
|
|
18857
|
+
],
|
|
18858
|
+
"runtimeAssigned": false
|
|
18859
|
+
},
|
|
18860
|
+
{
|
|
18861
|
+
"name": "--brick-prose-body-font-family",
|
|
18862
|
+
"classification": "optional-extension",
|
|
18863
|
+
"scope": "component-instance",
|
|
18864
|
+
"owner": "prose",
|
|
18865
|
+
"type": null,
|
|
18866
|
+
"fallback": null,
|
|
18867
|
+
"supportedRange": null,
|
|
18868
|
+
"sources": [
|
|
18869
|
+
"src/components/prose/prose.css"
|
|
18870
|
+
],
|
|
18871
|
+
"runtimeAssigned": false
|
|
18872
|
+
},
|
|
18873
|
+
{
|
|
18874
|
+
"name": "--brick-prose-body-font-size",
|
|
18875
|
+
"classification": "optional-extension",
|
|
18876
|
+
"scope": "component-instance",
|
|
18877
|
+
"owner": "prose",
|
|
18878
|
+
"type": null,
|
|
18879
|
+
"fallback": null,
|
|
18880
|
+
"supportedRange": null,
|
|
18881
|
+
"sources": [
|
|
18882
|
+
"src/components/prose/prose.css"
|
|
18883
|
+
],
|
|
18884
|
+
"runtimeAssigned": false
|
|
18885
|
+
},
|
|
18886
|
+
{
|
|
18887
|
+
"name": "--brick-prose-body-font-weight",
|
|
18888
|
+
"classification": "optional-extension",
|
|
18889
|
+
"scope": "component-instance",
|
|
18890
|
+
"owner": "prose",
|
|
18891
|
+
"type": null,
|
|
18892
|
+
"fallback": null,
|
|
18893
|
+
"supportedRange": null,
|
|
18894
|
+
"sources": [
|
|
18895
|
+
"src/components/prose/prose.css"
|
|
18896
|
+
],
|
|
18897
|
+
"runtimeAssigned": false
|
|
18898
|
+
},
|
|
18899
|
+
{
|
|
18900
|
+
"name": "--brick-prose-body-letter-spacing",
|
|
18901
|
+
"classification": "optional-extension",
|
|
18902
|
+
"scope": "component-instance",
|
|
18903
|
+
"owner": "prose",
|
|
18904
|
+
"type": null,
|
|
18905
|
+
"fallback": null,
|
|
18906
|
+
"supportedRange": null,
|
|
18907
|
+
"sources": [
|
|
18908
|
+
"src/components/prose/prose.css"
|
|
18909
|
+
],
|
|
18910
|
+
"runtimeAssigned": false
|
|
18911
|
+
},
|
|
18912
|
+
{
|
|
18913
|
+
"name": "--brick-prose-body-line-height",
|
|
18914
|
+
"classification": "optional-extension",
|
|
18915
|
+
"scope": "component-instance",
|
|
18916
|
+
"owner": "prose",
|
|
18917
|
+
"type": null,
|
|
18918
|
+
"fallback": null,
|
|
18919
|
+
"supportedRange": null,
|
|
18920
|
+
"sources": [
|
|
18921
|
+
"src/components/prose/prose.css"
|
|
18922
|
+
],
|
|
18923
|
+
"runtimeAssigned": false
|
|
18924
|
+
},
|
|
18925
|
+
{
|
|
18926
|
+
"name": "--brick-prose-border-color",
|
|
18927
|
+
"classification": "optional-extension",
|
|
18928
|
+
"scope": "component-instance",
|
|
18929
|
+
"owner": "prose",
|
|
18930
|
+
"type": null,
|
|
18931
|
+
"fallback": null,
|
|
18932
|
+
"supportedRange": null,
|
|
18933
|
+
"sources": [
|
|
18934
|
+
"src/components/prose/prose.css"
|
|
18935
|
+
],
|
|
18936
|
+
"runtimeAssigned": false
|
|
18937
|
+
},
|
|
18938
|
+
{
|
|
18939
|
+
"name": "--brick-prose-code-font-family",
|
|
18940
|
+
"classification": "optional-extension",
|
|
18941
|
+
"scope": "component-instance",
|
|
18942
|
+
"owner": "prose",
|
|
18943
|
+
"type": null,
|
|
18944
|
+
"fallback": null,
|
|
18945
|
+
"supportedRange": null,
|
|
18946
|
+
"sources": [
|
|
18947
|
+
"src/components/prose/prose.css"
|
|
18948
|
+
],
|
|
18949
|
+
"runtimeAssigned": false
|
|
18950
|
+
},
|
|
18951
|
+
{
|
|
18952
|
+
"name": "--brick-prose-code-font-size",
|
|
18953
|
+
"classification": "optional-extension",
|
|
18954
|
+
"scope": "component-instance",
|
|
18955
|
+
"owner": "prose",
|
|
18956
|
+
"type": null,
|
|
18957
|
+
"fallback": null,
|
|
18958
|
+
"supportedRange": null,
|
|
18959
|
+
"sources": [
|
|
18960
|
+
"src/components/prose/prose.css"
|
|
18961
|
+
],
|
|
18962
|
+
"runtimeAssigned": false
|
|
18963
|
+
},
|
|
18964
|
+
{
|
|
18965
|
+
"name": "--brick-prose-code-radius",
|
|
18966
|
+
"classification": "optional-extension",
|
|
18967
|
+
"scope": "component-instance",
|
|
18968
|
+
"owner": "prose",
|
|
18969
|
+
"type": null,
|
|
18970
|
+
"fallback": null,
|
|
18971
|
+
"supportedRange": null,
|
|
18972
|
+
"sources": [
|
|
18973
|
+
"src/components/prose/prose.css"
|
|
18974
|
+
],
|
|
18975
|
+
"runtimeAssigned": false
|
|
18976
|
+
},
|
|
18977
|
+
{
|
|
18978
|
+
"name": "--brick-prose-flow-space",
|
|
18979
|
+
"classification": "optional-extension",
|
|
18980
|
+
"scope": "component-instance",
|
|
18981
|
+
"owner": "prose",
|
|
18982
|
+
"type": null,
|
|
18983
|
+
"fallback": null,
|
|
18984
|
+
"supportedRange": null,
|
|
18985
|
+
"sources": [
|
|
18986
|
+
"src/components/prose/prose.css"
|
|
18987
|
+
],
|
|
18988
|
+
"runtimeAssigned": false
|
|
18989
|
+
},
|
|
18990
|
+
{
|
|
18991
|
+
"name": "--brick-prose-foreground",
|
|
18992
|
+
"classification": "optional-extension",
|
|
18993
|
+
"scope": "component-instance",
|
|
18994
|
+
"owner": "prose",
|
|
18995
|
+
"type": null,
|
|
18996
|
+
"fallback": null,
|
|
18997
|
+
"supportedRange": null,
|
|
18998
|
+
"sources": [
|
|
18999
|
+
"src/components/prose/prose.css"
|
|
19000
|
+
],
|
|
19001
|
+
"runtimeAssigned": false
|
|
19002
|
+
},
|
|
19003
|
+
{
|
|
19004
|
+
"name": "--brick-prose-heading-font-family",
|
|
19005
|
+
"classification": "optional-extension",
|
|
19006
|
+
"scope": "component-instance",
|
|
19007
|
+
"owner": "prose",
|
|
19008
|
+
"type": null,
|
|
19009
|
+
"fallback": null,
|
|
19010
|
+
"supportedRange": null,
|
|
19011
|
+
"sources": [
|
|
19012
|
+
"src/components/prose/prose.css"
|
|
19013
|
+
],
|
|
19014
|
+
"runtimeAssigned": false
|
|
19015
|
+
},
|
|
19016
|
+
{
|
|
19017
|
+
"name": "--brick-prose-heading-font-weight",
|
|
19018
|
+
"classification": "optional-extension",
|
|
19019
|
+
"scope": "component-instance",
|
|
19020
|
+
"owner": "prose",
|
|
19021
|
+
"type": null,
|
|
19022
|
+
"fallback": null,
|
|
19023
|
+
"supportedRange": null,
|
|
19024
|
+
"sources": [
|
|
19025
|
+
"src/components/prose/prose.css"
|
|
19026
|
+
],
|
|
19027
|
+
"runtimeAssigned": false
|
|
19028
|
+
},
|
|
19029
|
+
{
|
|
19030
|
+
"name": "--brick-prose-heading-letter-spacing",
|
|
19031
|
+
"classification": "optional-extension",
|
|
19032
|
+
"scope": "component-instance",
|
|
19033
|
+
"owner": "prose",
|
|
19034
|
+
"type": null,
|
|
19035
|
+
"fallback": null,
|
|
19036
|
+
"supportedRange": null,
|
|
19037
|
+
"sources": [
|
|
19038
|
+
"src/components/prose/prose.css"
|
|
19039
|
+
],
|
|
19040
|
+
"runtimeAssigned": false
|
|
19041
|
+
},
|
|
19042
|
+
{
|
|
19043
|
+
"name": "--brick-prose-link-foreground",
|
|
19044
|
+
"classification": "optional-extension",
|
|
19045
|
+
"scope": "component-instance",
|
|
19046
|
+
"owner": "prose",
|
|
19047
|
+
"type": null,
|
|
19048
|
+
"fallback": null,
|
|
19049
|
+
"supportedRange": null,
|
|
19050
|
+
"sources": [
|
|
19051
|
+
"src/components/prose/prose.css"
|
|
19052
|
+
],
|
|
19053
|
+
"runtimeAssigned": false
|
|
19054
|
+
},
|
|
19055
|
+
{
|
|
19056
|
+
"name": "--brick-prose-measure",
|
|
19057
|
+
"classification": "optional-extension",
|
|
19058
|
+
"scope": "component-instance",
|
|
19059
|
+
"owner": "prose",
|
|
19060
|
+
"type": null,
|
|
19061
|
+
"fallback": null,
|
|
19062
|
+
"supportedRange": null,
|
|
19063
|
+
"sources": [
|
|
19064
|
+
"src/components/prose/prose.css"
|
|
19065
|
+
],
|
|
19066
|
+
"runtimeAssigned": false
|
|
19067
|
+
},
|
|
19068
|
+
{
|
|
19069
|
+
"name": "--brick-prose-media-radius",
|
|
19070
|
+
"classification": "optional-extension",
|
|
19071
|
+
"scope": "component-instance",
|
|
19072
|
+
"owner": "prose",
|
|
19073
|
+
"type": null,
|
|
19074
|
+
"fallback": null,
|
|
19075
|
+
"supportedRange": null,
|
|
19076
|
+
"sources": [
|
|
19077
|
+
"src/components/prose/prose.css"
|
|
19078
|
+
],
|
|
19079
|
+
"runtimeAssigned": false
|
|
19080
|
+
},
|
|
19081
|
+
{
|
|
19082
|
+
"name": "--brick-prose-muted-foreground",
|
|
19083
|
+
"classification": "optional-extension",
|
|
19084
|
+
"scope": "component-instance",
|
|
19085
|
+
"owner": "prose",
|
|
19086
|
+
"type": null,
|
|
19087
|
+
"fallback": null,
|
|
19088
|
+
"supportedRange": null,
|
|
19089
|
+
"sources": [
|
|
19090
|
+
"src/components/prose/prose.css"
|
|
19091
|
+
],
|
|
19092
|
+
"runtimeAssigned": false
|
|
19093
|
+
},
|
|
19094
|
+
{
|
|
19095
|
+
"name": "--brick-prose-section-space",
|
|
19096
|
+
"classification": "optional-extension",
|
|
19097
|
+
"scope": "component-instance",
|
|
19098
|
+
"owner": "prose",
|
|
19099
|
+
"type": null,
|
|
19100
|
+
"fallback": null,
|
|
19101
|
+
"supportedRange": null,
|
|
19102
|
+
"sources": [
|
|
19103
|
+
"src/components/prose/prose.css"
|
|
19104
|
+
],
|
|
19105
|
+
"runtimeAssigned": false
|
|
19106
|
+
},
|
|
19107
|
+
{
|
|
19108
|
+
"name": "--brick-prose-surface",
|
|
19109
|
+
"classification": "optional-extension",
|
|
19110
|
+
"scope": "component-instance",
|
|
19111
|
+
"owner": "prose",
|
|
19112
|
+
"type": null,
|
|
19113
|
+
"fallback": null,
|
|
19114
|
+
"supportedRange": null,
|
|
19115
|
+
"sources": [
|
|
19116
|
+
"src/components/prose/prose.css"
|
|
19117
|
+
],
|
|
19118
|
+
"runtimeAssigned": false
|
|
19119
|
+
},
|
|
19120
|
+
{
|
|
19121
|
+
"name": "--brick-prose-table-cell-padding-block",
|
|
19122
|
+
"classification": "optional-extension",
|
|
19123
|
+
"scope": "component-instance",
|
|
19124
|
+
"owner": "prose",
|
|
19125
|
+
"type": null,
|
|
19126
|
+
"fallback": null,
|
|
19127
|
+
"supportedRange": null,
|
|
19128
|
+
"sources": [
|
|
19129
|
+
"src/components/prose/prose.css"
|
|
19130
|
+
],
|
|
19131
|
+
"runtimeAssigned": false
|
|
19132
|
+
},
|
|
19133
|
+
{
|
|
19134
|
+
"name": "--brick-prose-table-cell-padding-inline",
|
|
19135
|
+
"classification": "optional-extension",
|
|
19136
|
+
"scope": "component-instance",
|
|
19137
|
+
"owner": "prose",
|
|
19138
|
+
"type": null,
|
|
19139
|
+
"fallback": null,
|
|
19140
|
+
"supportedRange": null,
|
|
19141
|
+
"sources": [
|
|
19142
|
+
"src/components/prose/prose.css"
|
|
19143
|
+
],
|
|
19144
|
+
"runtimeAssigned": false
|
|
19145
|
+
},
|
|
17828
19146
|
{
|
|
17829
19147
|
"name": "--brick-radio-checked",
|
|
17830
19148
|
"classification": "optional-extension",
|