dawn-ui-react 1.0.0-alpha.30 → 1.0.0-alpha.31
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/dist/components/select/index.d.ts +2 -0
- package/dist/components/select/select-description.d.ts +2 -0
- package/dist/components/select/select-title.d.ts +2 -0
- package/dist/components/select/select.types.d.ts +2 -0
- package/dist/dawn-ui-react.js +9010 -9000
- package/dist/dawn-ui-react.umd.cjs +53 -53
- package/package.json +1 -1
|
@@ -8,3 +8,5 @@ export { SelectTrigger } from './select-trigger';
|
|
|
8
8
|
export { SelectValue } from './select-value';
|
|
9
9
|
export { SelectGroup } from './select-group';
|
|
10
10
|
export { SelectGroupLabel } from './select-group-label';
|
|
11
|
+
export { SelectDescription } from './select-description';
|
|
12
|
+
export { SelectTitle } from './select-title';
|
|
@@ -13,6 +13,8 @@ export type SelectItemProps = React.ComponentProps<typeof BaseSelect.Item>;
|
|
|
13
13
|
export type SelectListProps = React.ComponentProps<typeof BaseSelect.List>;
|
|
14
14
|
export type SelectGroupProps = React.ComponentProps<typeof BaseSelect.Group>;
|
|
15
15
|
export type SelectGroupLabelProps = React.ComponentProps<typeof BaseSelect.GroupLabel>;
|
|
16
|
+
export type SelectDescriptionProps = React.ComponentProps<'span'>;
|
|
17
|
+
export type SelectTitleProps = React.ComponentProps<'span'>;
|
|
16
18
|
export type SelectFilter = {
|
|
17
19
|
id: number;
|
|
18
20
|
label: string;
|