-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from compassion-global-experience/exportProps2
Export props & add 'use client' directive
- Loading branch information
Showing
18 changed files
with
52 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './Box'; | ||
export { default, BoxProps } from './Box'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './Card'; | ||
export { default, CardProps } from './Card'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client'; | ||
|
||
import { forwardRef } from 'react'; | ||
|
||
import Input from './Input'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client'; | ||
|
||
import { | ||
ChangeEvent, | ||
KeyboardEvent, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client'; | ||
|
||
import { forwardRef } from 'react'; | ||
|
||
import { FieldContainer } from './Helpers'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client'; | ||
|
||
import { forwardRef } from 'react'; | ||
|
||
import { SelectFieldProps } from './SelectField'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export { default as Input } from './Input'; | ||
export { default as TextField } from './TextField'; | ||
export { default as InputGroup } from './InputGroup'; | ||
export { default as TextArea } from './TextArea'; | ||
export { default as Select } from './Select'; | ||
export { default as SelectField } from './SelectField'; | ||
export { default as SelectGroup } from './SelectGroup'; | ||
export { default as ChoiceInput } from './ChoiceInput'; | ||
export { default as PinField } from './PinField'; | ||
export { default as Input, InputProps } from './Input'; | ||
export { default as TextField, TextFieldProps } from './TextField'; | ||
export { default as InputGroup, InputGroupProps } from './InputGroup'; | ||
export { default as TextArea, TextAreaFieldProps } from './TextArea'; | ||
export { default as Select, SelectProps } from './Select'; | ||
export { default as SelectField, SelectFieldProps } from './SelectField'; | ||
export { default as SelectGroup, SelectGroupProps } from './SelectGroup'; | ||
export { default as ChoiceInput, ChoiceInputProps } from './ChoiceInput'; | ||
export { default as PinField, PinFieldProps } from './PinField'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './Modal'; | ||
export { default, ModalProps } from './Modal'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './Table'; | ||
export { default, Column, TableWithRefProps } from './Table'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './TextBox'; | ||
export { default, TextBoxProps } from './TextBox'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
export { default as Button, ButtonProps } from './Button'; | ||
export { default as Modal } from './Modal'; | ||
export { default as Modal, ModalProps } from './Modal'; | ||
export { default as Icon, IconProps } from './Icon'; | ||
export { default as Table } from './Table'; | ||
export { | ||
default as Table, | ||
Column as TableColumn, | ||
TableWithRefProps as TableProps, | ||
} from './Table'; | ||
export { NavItem, NavItemProps } from './Nav'; | ||
export { default as Card } from './Card'; | ||
export { default as TextBox } from './TextBox'; | ||
export { default as Box } from './Box'; | ||
export { default as Card, CardProps } from './Card'; | ||
export { default as TextBox, TextBoxProps } from './TextBox'; | ||
export { default as Box, BoxProps } from './Box'; | ||
export { | ||
Input, | ||
InputProps, | ||
InputGroup, | ||
InputGroupProps, | ||
TextField, | ||
TextFieldProps, | ||
TextArea, | ||
TextAreaFieldProps, | ||
Select, | ||
SelectProps, | ||
SelectField, | ||
SelectFieldProps, | ||
SelectGroup, | ||
SelectGroupProps, | ||
ChoiceInput, | ||
ChoiceInputProps, | ||
PinField, | ||
PinFieldProps, | ||
} from './Form'; |