You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`background?: BackgroundImage` — See [background](?path=/docs/components-pics-video-datalens-backgroundimage--docs) properties.
20
+
`background?: FormBlockBackgroundProps` — Same as `BackgroundImage` (see [background](?path=/docs/components-pics-video-datalens-backgroundimage--docs) properties), but the `style` prop supports `Device` breakpoints, for example:
21
+
22
+
```ts
23
+
{
24
+
style: {
25
+
desktop: {
26
+
background: 'red',
27
+
},
28
+
mobile: {
29
+
background: 'blue',
30
+
},
31
+
}
32
+
}
33
+
```
34
+
35
+
`customFormNode?: React.ReactNode` - A custom React node that will be rendered instead of the form.
0 commit comments