frosty 0.0.34 → 0.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3985,7 +3985,14 @@ class _DOMRenderer extends renderer._Renderer {
3985
3985
  /** @internal */
3986
3986
  _updateElement(node, element, stack) {
3987
3987
  if (element instanceof DOMNativeNode) {
3988
- element.update(node.props);
3988
+ const { props: { className, style, inlineStyle, ..._props } } = node;
3989
+ const builtClassName = this.__createBuiltClassName(className, style);
3990
+ const { css } = processCss(inlineStyle);
3991
+ element.update({
3992
+ className: builtClassName ? builtClassName : undefined,
3993
+ style: css ? css : undefined,
3994
+ ..._props
3995
+ });
3989
3996
  return;
3990
3997
  }
3991
3998
  const { type, props: { ref, className, style, inlineStyle, innerHTML, ..._props } } = node;
@@ -4126,4 +4133,4 @@ class _DOMRenderer extends renderer._Renderer {
4126
4133
 
4127
4134
  exports.DOMNativeNode = DOMNativeNode;
4128
4135
  exports._DOMRenderer = _DOMRenderer;
4129
- //# sourceMappingURL=common-CpemFzvV.js.map
4136
+ //# sourceMappingURL=common-CjVBgVnj.js.map