@dinesh-gamage/react-scoped-css 2.0.0 → 2.0.2

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.
@@ -14245,7 +14245,7 @@ function isExcluded(className, excludePrefixes) {
14245
14245
 
14246
14246
  // src/babel/index.ts
14247
14247
  var CLASSNAMES_FUNCTIONS = /* @__PURE__ */ new Set(["classNames", "clsx", "cx", "cn"]);
14248
- var SCOPE_CLASS_IMPORT = "react-scoped-css";
14248
+ var SCOPE_CLASS_IMPORT = "@dinesh-gamage/react-scoped-css";
14249
14249
  function scopeClassString(value, hash, exclude) {
14250
14250
  return value.split(/\s+/).filter(Boolean).map((cls) => isExcluded(cls, exclude) ? cls : `${cls}-${hash}`).join(" ");
14251
14251
  }