Skip to content

Commit 2527c27

Browse files
committed
missing generatedTypes
1 parent 85d8441 commit 2527c27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

generatedTypes/src/commons/modifiers.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ export declare function extractModifierProps(props: Dictionary<any>): _.Dictiona
9090
* TODO:
9191
* @deprecated switch to Modifiers#extractComponentProps
9292
*/
93-
export declare function extractOwnProps(props: Dictionary<any>, ignoreProps: string[]): _.Omit<_.Dictionary<any>, string>;
94-
export declare function extractComponentProps(component: any, props: Dictionary<any>, ignoreProps?: string[]): _.Omit<_.Dictionary<any>, string>;
93+
export declare function extractOwnProps(props: Dictionary<any>, ignoreProps: string[]): _.Omit<Partial<Dictionary<any>>, string>;
94+
export declare function extractComponentProps(component: any, props: Dictionary<any>, ignoreProps?: string[]): _.Omit<Partial<Dictionary<any>>, string>;
9595
export declare function getThemeProps(props?: any, context?: any): any;
9696
export declare function generateModifiersStyle(options: {
9797
color: boolean;

generatedTypes/src/components/chipsInput/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ declare type OwnProps = ChipsInputProps & BaseComponentInjectedProps;
100100
* @description: Chips input component
101101
* @modifiers: Typography
102102
* @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/ChipsInput/ChipsInput.gif?raw=true
103-
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ChipsInputScreen.js
103+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ChipsInputScreen.tsx
104104
* @extends: TextField
105105
*/
106106
declare class ChipsInput extends Component<OwnProps, State> {

0 commit comments

Comments
 (0)