@dynamic-framework/ui-react 1.23.0 → 1.24.0

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.
package/dist/index.js CHANGED
@@ -254,7 +254,7 @@ function DBadge({ text, dot = false, soft = false, theme = 'primary', id, classN
254
254
  badge: true,
255
255
  'rounded-circle p-2': dot,
256
256
  [`text-bg-${theme}`]: !!theme && !soft,
257
- [`text-bg-soft-${theme}`]: !!theme && soft,
257
+ [`text-${theme}-bg-color`]: !!theme && soft,
258
258
  }), [dot, soft, theme]);
259
259
  return (jsxRuntime.jsx("span", Object.assign({ className: classNames(generateClasses, className), style: style }, id && { id }, { children: jsxRuntime.jsx("span", { children: text }) })));
260
260
  }