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