kwant-ui 3.51.0-dev.17 → 3.51.0-dev.19

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,6 +31,7 @@ export declare namespace IDropdown {
31
31
  avatarProps?: AvatarDeclarations.Props;
32
32
  selectedValue?: string | null;
33
33
  withInput?: boolean;
34
+ dropdownWidth?: number;
34
35
  };
35
36
  }
36
37
  export interface DropdownOffsets {
@@ -18,6 +18,7 @@ export declare namespace ISelect {
18
18
  onSelect?: (option: ISelect.Option, index?: number) => void;
19
19
  disabled?: boolean;
20
20
  isDynamicOptionPosition?: boolean;
21
+ dropdownWidth?: number;
21
22
  }
22
23
  interface Option extends IDropdownSelect.Option {
23
24
  }
@@ -1,3 +1,3 @@
1
1
  import { SWType } from './types';
2
- declare function Switch({ disabled, onClick, onChange, name, id, checked, color, size, mode }: SWType): import("react/jsx-runtime").JSX.Element;
2
+ declare function Switch(props: SWType): import("react/jsx-runtime").JSX.Element;
3
3
  export { Switch };
@@ -8,6 +8,7 @@ export type SWType = {
8
8
  color?: string;
9
9
  size?: 'small' | 'medium' | 'large';
10
10
  mode?: 'default' | 'labelMode' | 'iconMode';
11
+ cursorPointer?: boolean;
11
12
  };
12
13
  export type SwitchContainerTypes = {
13
14
  disabled?: boolean;
@@ -20,4 +21,5 @@ export type SwitchContainerTypes = {
20
21
  size?: 'small' | 'medium' | 'large';
21
22
  labelMode?: boolean;
22
23
  iconMode?: boolean;
24
+ cursorPointer?: boolean;
23
25
  };