@eqtylab/equality 1.0.2 → 1.1.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.d.cts CHANGED
@@ -151,7 +151,7 @@ declare const BgGradient: ({ theme, placement, }: {
151
151
  }) => react_jsx_runtime.JSX.Element;
152
152
 
153
153
  declare const buttonVariants: (props?: ({
154
- variant?: "link" | "danger" | "primary" | "secondary" | "tertiary" | null | undefined;
154
+ variant?: "link" | "danger" | "navigation" | "primary" | "secondary" | "tertiary" | null | undefined;
155
155
  size?: "sm" | "md" | "lg" | null | undefined;
156
156
  } & class_variance_authority_types.ClassProp) | undefined) => string;
157
157
  type ButtonBaseProps = Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'prefix'>;
package/dist/index.d.ts CHANGED
@@ -151,7 +151,7 @@ declare const BgGradient: ({ theme, placement, }: {
151
151
  }) => react_jsx_runtime.JSX.Element;
152
152
 
153
153
  declare const buttonVariants: (props?: ({
154
- variant?: "link" | "danger" | "primary" | "secondary" | "tertiary" | null | undefined;
154
+ variant?: "link" | "danger" | "navigation" | "primary" | "secondary" | "tertiary" | null | undefined;
155
155
  size?: "sm" | "md" | "lg" | null | undefined;
156
156
  } & class_variance_authority_types.ClassProp) | undefined) => string;
157
157
  type ButtonBaseProps = Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'prefix'>;
package/dist/index.js CHANGED
@@ -127,7 +127,8 @@ var buttonVariants = cva(styles2["button"], {
127
127
  danger: styles2["button--danger"],
128
128
  secondary: styles2["button--secondary"],
129
129
  tertiary: styles2["button--tertiary"],
130
- link: styles2["button--link"]
130
+ link: styles2["button--link"],
131
+ navigation: styles2["button--navigation"]
131
132
  },
132
133
  size: {
133
134
  sm: styles2["size--sm"],