@theroutingcompany/components 0.0.47 → 0.0.48
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/trc-components.es.js +11 -11
- package/dist/trc-components.es.js.map +1 -1
- package/dist/trc-components.umd.js +1 -1
- package/dist/trc-components.umd.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/types/components/SingleSelect/SingleSelect.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { AriaSelectProps } from '@react-types/select';
|
|
2
|
-
export { Item as SingleSelectItem, Section as SingleSelectSection } from '@react-stately/collections';
|
|
2
|
+
export { Item as SingleSelectItem, Section as SingleSelectSection, } from '@react-stately/collections';
|
|
3
3
|
type SingleSelectProps<T> = AriaSelectProps<T> & {
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
tooltipIcon?: string;
|
|
6
6
|
tooltipContent?: string;
|
|
7
|
+
showCaret?: boolean;
|
|
7
8
|
};
|
|
8
9
|
export declare function SingleSelect<T extends object>(props: SingleSelectProps<T> & {
|
|
9
10
|
hideLabel?: boolean | undefined;
|