@burdenoff/website-sdk 2026.524.5 → 2026.524.7

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.mts CHANGED
@@ -49,7 +49,7 @@ declare function CareersApplyForm({ productName, recaptchaSiteKey, positions, he
49
49
 
50
50
  declare const buttonVariants: (props?: ({
51
51
  variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
52
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
52
+ size?: "icon" | "default" | "sm" | "lg" | null | undefined;
53
53
  } & class_variance_authority_types.ClassProp) | undefined) => string;
54
54
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
55
55
  asChild?: boolean;
package/dist/index.d.ts CHANGED
@@ -49,7 +49,7 @@ declare function CareersApplyForm({ productName, recaptchaSiteKey, positions, he
49
49
 
50
50
  declare const buttonVariants: (props?: ({
51
51
  variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
52
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
52
+ size?: "icon" | "default" | "sm" | "lg" | null | undefined;
53
53
  } & class_variance_authority_types.ClassProp) | undefined) => string;
54
54
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
55
55
  asChild?: boolean;
package/dist/index.js CHANGED
@@ -1605,7 +1605,7 @@ function CareersApplyForm({
1605
1605
  const { product } = useProduct();
1606
1606
  const resolvedProductId = product?.id || config.productId;
1607
1607
  const displayName = productName ?? product?.name ?? config.productId;
1608
- const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
1608
+ const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? product?.recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
1609
1609
  const recaptchaRef = React.useRef(null);
1610
1610
  const [isSubmitting, setIsSubmitting] = React.useState(false);
1611
1611
  const [submitted, setSubmitted] = React.useState(false);