@hexclave/dashboard-ui-components 1.0.44 → 1.0.46

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,7 @@ import { VariantProps } from "class-variance-authority";
4
4
  //#region src/components/button.d.ts
5
5
  declare const designButtonVariants: (props?: ({
6
6
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "plain" | null | undefined;
7
- size?: "sm" | "lg" | "default" | "icon" | null | undefined;
7
+ size?: "default" | "sm" | "lg" | "icon" | null | undefined;
8
8
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
9
9
  type DesignOriginalButtonProps = {
10
10
  asChild?: boolean;
@@ -36,7 +36,7 @@ declare const DesignButton: React.FC<{
36
36
  asChild?: boolean;
37
37
  } & React.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
38
38
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "plain" | null | undefined;
39
- size?: "sm" | "lg" | "default" | "icon" | null | undefined;
39
+ size?: "default" | "sm" | "lg" | "icon" | null | undefined;
40
40
  } & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
41
41
  ref?: React.Ref<HTMLButtonElement> | undefined;
42
42
  }>;
@@ -7902,7 +7902,7 @@ attempted value: ${formattedValue}
7902
7902
  message: (params) => `${params.path} must be a 2-letter country code`,
7903
7903
  test: (value) => value == null || isValidCountryCode(value)
7904
7904
  });
7905
- var intervalSchema = yupTuple([yupNumber().min(0).integer().defined(), yupString().oneOf([
7905
+ var intervalSchema = yupTuple([yupNumber().min(1).integer().defined(), yupString().oneOf([
7906
7906
  "millisecond",
7907
7907
  "second",
7908
7908
  "minute",
@@ -7912,7 +7912,7 @@ attempted value: ${formattedValue}
7912
7912
  "month",
7913
7913
  "year"
7914
7914
  ]).defined()]);
7915
- var dayIntervalSchema = yupTuple([yupNumber().min(0).integer().defined(), yupString().oneOf([
7915
+ var dayIntervalSchema = yupTuple([yupNumber().min(1).integer().defined(), yupString().oneOf([
7916
7916
  "day",
7917
7917
  "week",
7918
7918
  "month",