@embedreach/components 0.1.38 → 0.1.39

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.
@@ -24261,6 +24261,13 @@ const buttonVariants = cva([styles$6.base], {
24261
24261
  const Button$1 = React.forwardRef(
24262
24262
  ({ className: className2, variant, size: size2, asChild = false, ...props }, ref) => {
24263
24263
  const Comp = asChild ? Slot$2 : "button";
24264
+ console.log(
24265
+ `BUTTON VARIANTS`,
24266
+ size2,
24267
+ variant,
24268
+ className2,
24269
+ buttonVariants({ variant, size: size2, className: className2 })
24270
+ );
24264
24271
  return /* @__PURE__ */ jsx(
24265
24272
  Comp,
24266
24273
  {
package/dist/index.umd.js CHANGED
@@ -24278,6 +24278,13 @@
24278
24278
  const Button$2 = React__namespace.forwardRef(
24279
24279
  ({ className: className2, variant, size: size3, asChild = false, ...props }, ref) => {
24280
24280
  const Comp = asChild ? Slot$2 : "button";
24281
+ console.log(
24282
+ `BUTTON VARIANTS`,
24283
+ size3,
24284
+ variant,
24285
+ className2,
24286
+ buttonVariants({ variant, size: size3, className: className2 })
24287
+ );
24281
24288
  return /* @__PURE__ */ jsxRuntime.jsx(
24282
24289
  Comp,
24283
24290
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embedreach/components",
3
- "version": "0.1.38",
3
+ "version": "0.1.39",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",