Skip to content

Commit a5997af

Browse files
committed
Export ChipsInputChipProps
1 parent 3cc60fb commit a5997af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

generatedTypes/src/incubator/ChipsInput/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export declare enum ChipsInputChangeReason {
55
Added = "added",
66
Removed = "removed"
77
}
8-
declare type ChipsInputChipProps = ChipProps & {
8+
export declare type ChipsInputChipProps = ChipProps & {
99
invalid?: boolean;
1010
};
1111
export declare type ChipsInputProps = Omit<TextFieldProps, 'ref'> & {

generatedTypes/src/incubator/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { default as ChipsInput, ChipsInputProps, ChipsInputChangeReason } from './ChipsInput';
1+
export { default as ChipsInput, ChipsInputProps, ChipsInputChangeReason, ChipsInputChipProps } from './ChipsInput';
22
export { default as ExpandableOverlay } from './expandableOverlay';
33
export { default as TextField, TextFieldProps, FieldContextType } from './TextField';
44
export { default as TouchableOpacity, TouchableOpacityProps } from './TouchableOpacity';

src/incubator/ChipsInput/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export enum ChipsInputChangeReason {
1313
Removed = 'removed'
1414
}
1515

16-
type ChipsInputChipProps = ChipProps & {invalid?: boolean};
16+
export type ChipsInputChipProps = ChipProps & {invalid?: boolean};
1717

1818
export type ChipsInputProps = Omit<TextFieldProps, 'ref'> & {
1919
/**

src/incubator/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export {default as ChipsInput, ChipsInputProps, ChipsInputChangeReason} from './ChipsInput';
1+
export {default as ChipsInput, ChipsInputProps, ChipsInputChangeReason, ChipsInputChipProps} from './ChipsInput';
22
export {default as ExpandableOverlay} from './expandableOverlay';
33
// @ts-ignore
44
export {default as TextField, TextFieldProps, FieldContextType} from './TextField';

0 commit comments

Comments
 (0)