Skip to content

Commit

Permalink
Merge pull request #5423 from GeekyAnts/release/3.4.17
Browse files Browse the repository at this point in the history
release 3.4.17
  • Loading branch information
rayan1810 committed Sep 26, 2022
2 parents 28c39a3 + d84661d commit 4e7d078
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ dist/__tests__
# Example
example/
expo-example/
next-example/
RNBareExample/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"prettier --write"
]
},
"version": "3.4.16",
"version": "3.4.17",
"license": "MIT",
"private": false,
"main": "lib/commonjs/index",
Expand Down
2 changes: 1 addition & 1 deletion src/components/composites/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export type {
IAccordionItemContextProps,
} from './Accordion';

export { FormControl } from './FormControl';
export { FormControl, useFormControlContext } from './FormControl';
export type {
IFormControlProps,
IFormControlLabelProps,
Expand Down
1 change: 1 addition & 0 deletions src/components/primitives/Pressable/index.tsx
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { default as Pressable } from './Pressable';
export type { IPressableProps } from './types';
export { useFocus, useHover, useIsPressed } from './Pressable';
3 changes: 3 additions & 0 deletions src/components/primitives/Radio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ export type {
IRadioGroupProps,
IRadioContext,
IRadioValue,
IRadioComponentType,
} from './types';

export { RadioContext } from './RadioGroup';
12 changes: 9 additions & 3 deletions src/components/primitives/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ export type { IInputProps } from './Input';
export { Checkbox } from './Checkbox';
export type { ICheckboxProps, ICheckboxGroupProps } from './Checkbox';

export { Radio } from './Radio';
export type { IRadioProps, IRadioGroupProps, IRadioValue } from './Radio';
export { Radio, RadioContext } from './Radio';
export type {
IRadioProps,
IRadioGroupProps,
IRadioValue,
IRadioContext,
IRadioComponentType,
} from './Radio';

export { Icon, createIcon } from './Icon';
export type { IIconProps } from './Icon';
Expand Down Expand Up @@ -42,7 +48,7 @@ export type { ISpinnerProps } from './Spinner';
export { default as Heading } from './Heading';
export type { IHeadingProps } from './Heading';

export { Pressable } from './Pressable';
export { useFocus, useHover, useIsPressed, Pressable } from './Pressable';
export type { IPressableProps } from './Pressable';

export { default as Flex, Spacer } from './Flex';
Expand Down
4 changes: 4 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ import {
IActionsheetItemProps,
Fab,
IFabProps,
useFormControlContext,
TextField,
ITextFieldProps,
Typeahead,
Expand Down Expand Up @@ -179,6 +180,7 @@ import {
export * from './components/basic';
export * from './components/primitives/Icon/Icons';
export * from './theme';
export { extractInObject, stylingProps } from './theme/tools';
export * from './core';
export * from './hooks';
export * from './factory';
Expand Down Expand Up @@ -261,6 +263,7 @@ export {
// Tabs,
Actionsheet,
Fab,
useFormControlContext,
Typeahead,
useTypeahead,
Select,
Expand All @@ -271,6 +274,7 @@ export {
Drawer,
Tooltip,
};
export * from './utils';
export type {
IAlertProps,
IAspectRatioProps,
Expand Down
2 changes: 2 additions & 0 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export {
mergeRefs,
composeEventHandlers,
};
export { wrapStringChild } from './wrapStringChild';
export { RadioContext } from '../components/primitives/Radio/RadioGroup';
export { combineContextAndProps } from './combineContextAndProps';
export type { IAccessibilityProps } from './accessibilityTypes';
export { ariaAttr } from './accessibilityUtils';
Expand Down

1 comment on commit 4e7d078

@vercel
Copy link

@vercel vercel bot commented on 4e7d078 Sep 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.