agroptima-design-system 1.1.2-beta.0 → 1.1.2-beta.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agroptima-design-system",
3
- "version": "1.1.2-beta.0",
3
+ "version": "1.1.2-beta.1",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -20,8 +20,10 @@ export type Payload = {
20
20
  page_size?: string
21
21
  }
22
22
 
23
- export interface InfiniteSelectProps<T>
24
- extends Omit<BaseSelectProps, 'defaultValue' | 'isEmpty' | 'children'> {
23
+ export interface InfiniteSelectProps<T> extends Omit<
24
+ BaseSelectProps,
25
+ 'defaultValue' | 'isEmpty' | 'children'
26
+ > {
25
27
  id?: string
26
28
  name?: string
27
29
  label: string
@@ -8,8 +8,10 @@ import { SelectTrigger } from './SelectTrigger'
8
8
 
9
9
  export type Option = { id: string; label: string }
10
10
 
11
- export interface SelectProps
12
- extends Omit<BaseSelectProps, 'isEmpty' | 'children'> {
11
+ export interface SelectProps extends Omit<
12
+ BaseSelectProps,
13
+ 'isEmpty' | 'children'
14
+ > {
13
15
  placeholder?: string
14
16
  options: Option[]
15
17
  label: string
@@ -4,6 +4,11 @@ import { Meta } from "@storybook/addon-docs/blocks";
4
4
 
5
5
  # Changelog
6
6
 
7
+ ## 1.1.2
8
+
9
+ * Fix selection clearing in InfiniteSelect selector
10
+
11
+
7
12
  ## 1.1.1
8
13
 
9
14
  * Update to Storybook 10