agroptima-design-system 1.1.2-beta.0 → 1.1.2-beta.2
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
|
@@ -20,8 +20,10 @@ export type Payload = {
|
|
|
20
20
|
page_size?: string
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
export interface InfiniteSelectProps<T>
|
|
24
|
-
|
|
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
|
-
|
|
11
|
+
export interface SelectProps extends Omit<
|
|
12
|
+
BaseSelectProps,
|
|
13
|
+
'isEmpty' | 'children'
|
|
14
|
+
> {
|
|
13
15
|
placeholder?: string
|
|
14
16
|
options: Option[]
|
|
15
17
|
label: string
|