Describe the bug
It is very difficult to target some css as we can't identify individual controls.
could we therefore by default change the line here
|
<div className={className} key={`${path}-${index}`}> |
where the path or combination of path and index can be used to concat a class name for className="vertical-layout-item" then becomes something like className="vertical-layout-item {{path}}" where path could be username for instance.
Expected behavior
see above step.
then change
<div className={className} key={${path}-${index}}>
to
<div className={${className} ${path}} key={${path}-${index}}>
Steps to reproduce the issue
- Go to '...'
- Click on '....'
- Scroll down to '....'
- See error
Screenshots

In which browser are you experiencing the issue?
n/a
Framework
React
RendererSet
Vanilla
Additional context
No response
Describe the bug
It is very difficult to target some css as we can't identify individual controls.
could we therefore by default change the line here
jsonforms/packages/vanilla/src/layouts/util.tsx
Line 51 in 988f282
where the
pathor combination of path and index can be used to concat a class name forclassName="vertical-layout-item"then becomes something likeclassName="vertical-layout-item {{path}}"where path could beusernamefor instance.Expected behavior
see above step.
then change
<div className={className} key={${path}-${index}}>to
<div className={${className} ${path}} key={${path}-${index}}>Steps to reproduce the issue
Screenshots
In which browser are you experiencing the issue?
n/a
Framework
React
RendererSet
Vanilla
Additional context
No response