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
6969
7070This is the list of class names. 🧐
7171
72+ - ` data-key `
7273- ` data-key-pair `
74+ - ` data-key-key `
75+ - ` data-key-colon `
76+ - ` data-key-toggle-expanded `
77+ - ` data-key-toggle-collapsed `
7378- ` data-type-label `
7479- ` data-object `
7580- ` data-object-start `
Original file line number Diff line number Diff line change @@ -344,6 +344,7 @@ export const DataKeyPair: FC<DataKeyPairProps> = (props) => {
344344 ? ( inspect
345345 ? (
346346 < ExpandMoreIcon
347+ className = 'data-key-toggle-expanded'
347348 sx = { {
348349 fontSize : '.8rem' ,
349350 '&:hover' : { cursor : 'pointer' }
@@ -352,6 +353,7 @@ export const DataKeyPair: FC<DataKeyPairProps> = (props) => {
352353 )
353354 : (
354355 < ChevronRightIcon
356+ className = 'data-key-toggle-collapsed'
355357 sx = { {
356358 fontSize : '.8rem' ,
357359 '&:hover' : { cursor : 'pointer' }
You can’t perform that action at this time.
0 commit comments