@inntechcorp/it-design 2.0.207 → 2.0.208

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.ts CHANGED
@@ -906,6 +906,7 @@ type CheckboxProps = {
906
906
  value?: string | number | boolean;
907
907
  checked?: boolean;
908
908
  disabled?: boolean;
909
+ variant?: CheckboxVariant;
909
910
  indeterminate?: boolean;
910
911
  className?: string;
911
912
  children?: ChildrenProps;
@@ -937,6 +938,7 @@ type CheckboxEvent = {
937
938
  stopPropagation: () => void;
938
939
  preventDefault: () => void;
939
940
  };
941
+ type CheckboxVariant = "default" | "filled";
940
942
 
941
943
  type ITDImperativeFuncProps = {
942
944
  reset: (update?: boolean, validation?: boolean) => void;