File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,12 @@ Different part of the dom structure will have class names like `data-object-star
69
69
70
70
This is the list of class names. 🧐
71
71
72
+ - ` data-key `
72
73
- ` data-key-pair `
74
+ - ` data-key-key `
75
+ - ` data-key-colon `
76
+ - ` data-key-toggle-expanded `
77
+ - ` data-key-toggle-collapsed `
73
78
- ` data-type-label `
74
79
- ` data-object `
75
80
- ` data-object-start `
Original file line number Diff line number Diff line change @@ -344,6 +344,7 @@ export const DataKeyPair: FC<DataKeyPairProps> = (props) => {
344
344
? ( inspect
345
345
? (
346
346
< ExpandMoreIcon
347
+ className = 'data-key-toggle-expanded'
347
348
sx = { {
348
349
fontSize : '.8rem' ,
349
350
'&:hover' : { cursor : 'pointer' }
@@ -352,6 +353,7 @@ export const DataKeyPair: FC<DataKeyPairProps> = (props) => {
352
353
)
353
354
: (
354
355
< ChevronRightIcon
356
+ className = 'data-key-toggle-collapsed'
355
357
sx = { {
356
358
fontSize : '.8rem' ,
357
359
'&:hover' : { cursor : 'pointer' }
You can’t perform that action at this time.
0 commit comments