nectiasw 0.0.197 → 0.0.199

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.
@@ -66,6 +66,7 @@ export interface ScrollSearchProps {
66
66
  placeholderColor?: Color;
67
67
  dropdownItemColor?: Color;
68
68
  renderItem?: (item: Client) => React.ReactNode;
69
+ cMarginTop?: string;
69
70
  }
70
71
  export declare const defaults: {
71
72
  value: string;
@@ -6,8 +6,11 @@ type SkeletonProps = {
6
6
  type WithTheme = {
7
7
  theming?: Color;
8
8
  };
9
+ type SearchContainerProps = {
10
+ marginTop?: string;
11
+ };
9
12
  export declare const SkeletonDropdownItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SkeletonProps>> & string;
10
- export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
13
+ export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SearchContainerProps>> & string;
11
14
  export declare const SearchBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, WithTheme>> & string;
12
15
  export declare const SearchInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, WithTheme & {
13
16
  placeholderColor: Color;
@@ -11,3 +11,4 @@ export declare const CustomSize: Story;
11
11
  export declare const CustomVariant: Story;
12
12
  export declare const YearSelect: Story;
13
13
  export declare const Multi: Story;
14
+ export declare const MaxSelect: Story;
@@ -39,6 +39,7 @@ export type SelectProps = {
39
39
  handleKeyDown?: React.KeyboardEventHandler<HTMLDivElement>;
40
40
  isMulti?: boolean;
41
41
  isClearable?: boolean;
42
+ maxSelectedOptions?: number;
42
43
  };
43
44
  export type OptionListProps = {
44
45
  active?: boolean;