demio-ui 2.1.5 → 2.1.7
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.
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
3
3
|
type SelectProps = {
|
|
4
4
|
children: React.ReactNode;
|
|
5
|
+
cssClass?: string;
|
|
5
6
|
sideOffset?: number;
|
|
6
7
|
position?: 'item-aligned' | 'popper';
|
|
7
8
|
value?: string;
|
|
@@ -10,7 +11,6 @@ type SelectProps = {
|
|
|
10
11
|
id: string;
|
|
11
12
|
icon?: React.ReactNode | string;
|
|
12
13
|
placeholder?: string;
|
|
13
|
-
className?: string;
|
|
14
14
|
maxDropdownHeight?: string;
|
|
15
15
|
portalContainer?: HTMLElement;
|
|
16
16
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -178,6 +178,7 @@ declare function RadioGroup({ items, error, defaultValue, ariaLabel, hint, onCha
|
|
|
178
178
|
|
|
179
179
|
type SelectProps = {
|
|
180
180
|
children: React__default.ReactNode;
|
|
181
|
+
cssClass?: string;
|
|
181
182
|
sideOffset?: number;
|
|
182
183
|
position?: 'item-aligned' | 'popper';
|
|
183
184
|
value?: string;
|
|
@@ -186,7 +187,6 @@ type SelectProps = {
|
|
|
186
187
|
id: string;
|
|
187
188
|
icon?: React__default.ReactNode | string;
|
|
188
189
|
placeholder?: string;
|
|
189
|
-
className?: string;
|
|
190
190
|
maxDropdownHeight?: string;
|
|
191
191
|
portalContainer?: HTMLElement;
|
|
192
192
|
};
|