@scbt-ecom/ui 0.26.0 → 0.26.1

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.
@@ -31,4 +31,5 @@ export declare const defaultClassNames: {
31
31
  selected: string;
32
32
  range_outer: string;
33
33
  range_middle: string;
34
+ day: string;
34
35
  };
@@ -40,7 +40,7 @@ export declare const Controlled: {
40
40
  }) => import("react/jsx-runtime").JSX.Element;
41
41
  SelectControl: <TFieldValues extends import('react-hook-form').FieldValues = import('react-hook-form').FieldValues>({ control, classes, name, rules, shouldUnregister, disabled, defaultValue, returnValue, options, helperText, size, ...props }: import('react-hook-form').UseControllerProps<TFieldValues, import('react-hook-form').Path<TFieldValues>> & Omit<import('@headlessui/react').ComboboxProps<import('..').SelectItemOption, boolean, "li">, "onChange" | "className" | "multiple" | "by" | "virtual"> & {
42
42
  label: string;
43
- isMulti: boolean;
43
+ isMulti?: boolean | undefined;
44
44
  invalid?: boolean;
45
45
  isSearchable?: boolean;
46
46
  options: import('..').SelectItemOption[];
@@ -34,7 +34,7 @@ export declare const Uncontrolled: {
34
34
  } & import('react').RefAttributes<HTMLInputElement>>;
35
35
  SelectBase: import('react').ForwardRefExoticComponent<Omit<import('@headlessui/react').ComboboxProps<import('./select').SelectItemOption, boolean, "li">, "onChange" | "className" | "multiple" | "by" | "virtual"> & {
36
36
  label: string;
37
- isMulti: boolean;
37
+ isMulti?: boolean | undefined;
38
38
  invalid?: boolean;
39
39
  isSearchable?: boolean;
40
40
  options: import('./select').SelectItemOption[];
@@ -23,7 +23,7 @@ export type SelectBaseProps<Multi extends boolean> = Omit<ComboboxProps<SelectIt
23
23
  /**
24
24
  * Поддержка множественного выбора
25
25
  */
26
- isMulti: Multi;
26
+ isMulti?: Multi;
27
27
  /**
28
28
  * Пометить поле как не валидное
29
29
  */
@@ -77,7 +77,7 @@ export declare const SelectBase: import('react').ForwardRefExoticComponent<Omit<
77
77
  /**
78
78
  * Поддержка множественного выбора
79
79
  */
80
- isMulti: boolean;
80
+ isMulti?: boolean | undefined;
81
81
  /**
82
82
  * Пометить поле как не валидное
83
83
  */