@stokelp/ui 2.49.1 → 2.49.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.
@@ -4,7 +4,9 @@ import { Assign, JsxStyleProps, StyledComponent } from '@stokelp/styled-system/t
4
4
  import { ComponentProps, ForwardRefExoticComponent, RefAttributes, DetailedHTMLProps, ImgHTMLAttributes, DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES, RefObject } from 'react';
5
5
  import { CheckboxProps } from '../checkbox';
6
6
 
7
- export interface CheckboxCardProps extends Assign<JsxStyleProps, CheckboxRootProps>, CheckboxCardVariantProps {
7
+ type StyledCheckboxRootProps = Assign<JsxStyleProps, CheckboxRootProps>;
8
+ export interface CheckboxCardProps extends Omit<StyledCheckboxRootProps, 'value'>, CheckboxCardVariantProps {
9
+ value?: string | number;
8
10
  }
9
11
  export declare const CheckboxCardTitle: StyledComponent<ForwardRefExoticComponent<ArkCheckbox.LabelProps & RefAttributes<HTMLSpanElement>>, {}>;
10
12
  export declare const CheckboxCardContent: StyledComponent<"div", {}>;
@@ -17,3 +19,4 @@ export type CheckboxCardContentProps = ComponentProps<typeof CheckboxCardContent
17
19
  export type CheckboxCardDescriptionProps = ComponentProps<typeof CheckboxCardDescription>;
18
20
  export type CheckboxCardImageProps = ComponentProps<typeof CheckboxCardImage>;
19
21
  export declare const CheckboxCard: ForwardRefExoticComponent<CheckboxProps & RefAttributes<HTMLLabelElement>>;
22
+ export {};