@stenajs-webui/select 17.13.2 → 17.14.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.
- package/CHANGELOG.md +12 -0
- package/dist/components/ui/AsyncMultiSelect.d.ts +1 -1
- package/dist/components/ui/AsyncSelect.d.ts +1 -1
- package/dist/components/ui/GroupedMultiSelect.d.ts +1 -1
- package/dist/components/ui/MultiSelect.d.ts +1 -1
- package/dist/components/ui/Select.d.ts +1 -1
- package/dist/index.es.js +423 -460
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
11
|
+
export declare function Select<T>({ variant, styles, isMulti, ...selectProps }: SelectProps<T>): JSX.Element;
|