@stenajs-webui/select 17.13.0 → 17.13.3

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v17.13.3 (Tue Aug 30 2022)
2
+
3
+ #### 🏠 Internal
4
+
5
+ - Upgrade storybook, vite and ts [#502](https://github.com/StenaIT/stenajs-webui/pull/502) ([@lindskogen](https://github.com/lindskogen))
6
+
7
+ #### Authors: 1
8
+
9
+ - Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
10
+
11
+ ---
12
+
1
13
  # v17.12.1 (Mon Aug 22 2022)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -9,4 +9,4 @@ export interface AsyncMultiSelectProps<T = {
9
9
  variant?: SelectVariant;
10
10
  isMulti?: true;
11
11
  }
12
- export declare const AsyncMultiSelect: <T extends {}>({ variant, styles, isMulti, ...selectProps }: AsyncMultiSelectProps<T>) => JSX.Element;
12
+ export declare function AsyncMultiSelect<T>({ variant, styles, isMulti, ...selectProps }: AsyncMultiSelectProps<T>): JSX.Element;
@@ -9,4 +9,4 @@ export interface AsyncSelectProps<T = {
9
9
  variant?: SelectVariant;
10
10
  isMulti?: false;
11
11
  }
12
- export declare const AsyncSelect: <T extends {}>({ variant, styles, isMulti, ...selectProps }: AsyncSelectProps<T>) => JSX.Element;
12
+ export declare function AsyncSelect<T>({ variant, styles, isMulti, ...selectProps }: AsyncSelectProps<T>): JSX.Element;
@@ -22,4 +22,4 @@ export interface GroupedMultiSelectProps<TData> extends Omit<MultiSelectProps<In
22
22
  */
23
23
  value?: Options<DropdownOption<TData>> | undefined;
24
24
  }
25
- export declare const GroupedMultiSelect: <TData extends {}>({ onChange, options, value, variant, formatGroupLabel, formatOptionLabel, ...selectProps }: GroupedMultiSelectProps<TData>) => React.ReactElement<GroupedMultiSelectProps<TData>, string | React.JSXElementConstructor<any>>;
25
+ export declare function GroupedMultiSelect<TData>({ onChange, options, value, variant, formatGroupLabel, formatOptionLabel, ...selectProps }: GroupedMultiSelectProps<TData>): React.ReactElement<GroupedMultiSelectProps<TData>>;
@@ -10,4 +10,4 @@ export interface MultiSelectProps<TOption = {
10
10
  isMulti?: true;
11
11
  }
12
12
  export declare type MultiSelectComponentsConfig<TOption> = SelectComponentsConfig<TOption, true, GroupBase<TOption>>;
13
- export declare const MultiSelect: <TOption extends {}>({ variant, styles, isMulti, ...selectProps }: MultiSelectProps<TOption>) => JSX.Element;
13
+ export declare function MultiSelect<TOption>({ variant, styles, isMulti, ...selectProps }: MultiSelectProps<TOption>): JSX.Element;
@@ -8,4 +8,4 @@ export interface SelectProps<T = {
8
8
  variant?: SelectVariant;
9
9
  isMulti?: false;
10
10
  }
11
- export declare const Select: <T extends {}>({ variant, styles, isMulti, ...selectProps }: SelectProps<T>) => JSX.Element;
11
+ export declare function Select<T>({ variant, styles, isMulti, ...selectProps }: SelectProps<T>): JSX.Element;