gantri-components 2.225.0 → 2.227.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.
@@ -864,6 +864,7 @@ export declare const StyledColor: import("styled-components/dist/types").IStyled
864
864
  children?: import("react-i18next").ReactI18NextChild | Iterable<import("react-i18next").ReactI18NextChild>;
865
865
  slot?: string | undefined;
866
866
  title?: string | undefined;
867
+ className?: string | undefined;
867
868
  contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
868
869
  defaultChecked?: boolean | undefined;
869
870
  defaultValue?: string | number | readonly string[] | undefined;
@@ -871,7 +872,6 @@ export declare const StyledColor: import("styled-components/dist/types").IStyled
871
872
  suppressHydrationWarning?: boolean | undefined;
872
873
  accessKey?: string | undefined;
873
874
  autoFocus?: boolean | undefined;
874
- className?: string | undefined;
875
875
  contextMenu?: string | undefined;
876
876
  dir?: string | undefined;
877
877
  draggable?: (boolean | "false" | "true") | undefined;
@@ -67,6 +67,11 @@ export interface OptionSelectorProps {
67
67
  size?: ResolutionAwareProp<OptionSelectorSize>;
68
68
  /** Error message from Formik validation. */
69
69
  errorMessage?: string;
70
+ /**
71
+ * When true, clicking the currently selected option clears the selection
72
+ * (emits an empty string). Defaults to true.
73
+ */
74
+ allowDeselect?: boolean;
70
75
  }
71
76
  export interface StyledOptionProps {
72
77
  $disabled: boolean;