So prior to the recent updates with Pro this was working but not appears to be broken. I have some nested parameters within some of my components, for example:
"padding": {
    "type": "group",
    "label": "Padding",
    "params": {
      "top": {
        "label": "Top",
        "type": "padding",
        "initial": "0em"
      },
      "right": {
        "label": "Right",
        "type": "padding",
        "initial": "0em"
      },
      "bottom": {
        "label": "Bottom",
        "type": "padding",
        "initial": "0em"
      },
      "left": {
        "label": "Left",
        "type": "padding",
        "initial": "0em"
      }
    }
  }
With this, I could setup the parameters in with something like {{param.padding.left}} to allow the component to change these granular settings. As you can see from the
A closer look even reveals that the CSS variable it’s using seems to now be rendering these all as one value instead of traversing the dot.notated variable I have set.
Any ideas why this is happening would be extremely helpful. As I said, I believe this to be a bug because it worked previously which is why I have since setup several components like this and now they are all failing.
Thanks for the help!




