@@ -114,17 +114,17 @@ export const FontShorthand = () => {
114
114
return (
115
115
< div >
116
116
< p >
117
- font-weight: < code > { row . original . value . fontSize } </ code >
117
+ font-weight: < code > { row . original . $ value. fontSize } </ code >
118
118
</ p >
119
119
< p >
120
- font-size: < code > { row . original . value . fontSize } </ code >
120
+ font-size: < code > { row . original . $ value. fontSize } </ code >
121
121
</ p >
122
122
< p >
123
- font-family: < code > { row . original . value . fontFamily } </ code >
123
+ font-family: < code > { row . original . $ value. fontFamily } </ code >
124
124
</ p >
125
- { row . original . value . lineHeight && (
125
+ { row . original . $ value. lineHeight && (
126
126
< p >
127
- line-height: < code > { row . original . value . lineHeight } </ code >
127
+ line-height: < code > { row . original . $ value. lineHeight } </ code >
128
128
</ p >
129
129
) }
130
130
</ div >
@@ -200,7 +200,7 @@ export const Display = () => {
200
200
field : 'original' ,
201
201
rowHeader : true ,
202
202
renderCell : row => {
203
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
203
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
204
204
} ,
205
205
} ,
206
206
] }
@@ -276,7 +276,7 @@ export const TitleLarge = () => {
276
276
field : 'original' ,
277
277
rowHeader : true ,
278
278
renderCell : row => {
279
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
279
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
280
280
} ,
281
281
} ,
282
282
] }
@@ -353,7 +353,7 @@ export const TitleMedium = () => {
353
353
field : 'original' ,
354
354
rowHeader : true ,
355
355
renderCell : row => {
356
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
356
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
357
357
} ,
358
358
} ,
359
359
] }
@@ -430,7 +430,7 @@ export const TitleSmall = () => {
430
430
field : 'original' ,
431
431
rowHeader : true ,
432
432
renderCell : row => {
433
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
433
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
434
434
} ,
435
435
} ,
436
436
] }
@@ -505,7 +505,7 @@ export const Subtitle = () => {
505
505
field : 'original' ,
506
506
rowHeader : true ,
507
507
renderCell : row => {
508
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
508
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
509
509
} ,
510
510
} ,
511
511
] }
@@ -582,7 +582,7 @@ export const BodyLarge = () => {
582
582
field : 'original' ,
583
583
rowHeader : true ,
584
584
renderCell : row => {
585
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
585
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
586
586
} ,
587
587
} ,
588
588
] }
@@ -659,7 +659,7 @@ export const BodyMedium = () => {
659
659
field : 'original' ,
660
660
rowHeader : true ,
661
661
renderCell : row => {
662
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
662
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
663
663
} ,
664
664
} ,
665
665
] }
@@ -736,7 +736,7 @@ export const BodySmall = () => {
736
736
field : 'original' ,
737
737
rowHeader : true ,
738
738
renderCell : row => {
739
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
739
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
740
740
} ,
741
741
} ,
742
742
] }
@@ -811,7 +811,7 @@ export const Caption = () => {
811
811
field : 'original' ,
812
812
rowHeader : true ,
813
813
renderCell : row => {
814
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
814
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
815
815
} ,
816
816
} ,
817
817
] }
@@ -886,7 +886,7 @@ export const CodeBlock = () => {
886
886
field : 'original' ,
887
887
rowHeader : true ,
888
888
renderCell : row => {
889
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
889
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
890
890
} ,
891
891
} ,
892
892
] }
@@ -961,7 +961,7 @@ export const InlineCodeBlock = () => {
961
961
field : 'original' ,
962
962
rowHeader : true ,
963
963
renderCell : row => {
964
- return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . value } </ p >
964
+ return < p > { row . name . includes ( 'shorthand' ) ? undefined : row . original . $ value} </ p >
965
965
} ,
966
966
} ,
967
967
] }
@@ -1012,7 +1012,7 @@ export const Overview = () => {
1012
1012
} ,
1013
1013
{
1014
1014
header : 'Description' ,
1015
- field : 'comment ' ,
1015
+ field : 'description ' ,
1016
1016
rowHeader : true ,
1017
1017
width : 'auto' ,
1018
1018
renderCell : row => {
@@ -1025,7 +1025,7 @@ export const Overview = () => {
1025
1025
marginBottom : '0' ,
1026
1026
} }
1027
1027
>
1028
- { row . comment }
1028
+ { row . description }
1029
1029
</ p >
1030
1030
)
1031
1031
} ,
0 commit comments