-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove cycles from the codebase (#2508)
- Loading branch information
Showing
31 changed files
with
126 additions
and
98 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import AppbarComponent from './Appbar'; | ||
import AppbarContent from './AppbarContent'; | ||
import AppbarAction from './AppbarAction'; | ||
import AppbarBackAction from './AppbarBackAction'; | ||
import AppbarHeader from './AppbarHeader'; | ||
|
||
const Appbar = Object.assign( | ||
// @component ./Appbar.tsx | ||
AppbarComponent, | ||
{ | ||
// @component ./AppbarContent.tsx | ||
Content: AppbarContent, | ||
// @component ./AppbarAction.tsx | ||
Action: AppbarAction, | ||
// @component ./AppbarBackAction.tsx | ||
BackAction: AppbarBackAction, | ||
// @component ./AppbarHeader.tsx | ||
Header: AppbarHeader, | ||
} | ||
); | ||
|
||
export default Appbar; |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import CheckboxComponent from './Checkbox'; | ||
import CheckboxItem from './CheckboxItem'; | ||
import CheckboxAndroid from './CheckboxAndroid'; | ||
import CheckboxIOS from './CheckboxIOS'; | ||
|
||
const Checkbox = Object.assign( | ||
// @component ./Checkbox.tsx | ||
CheckboxComponent, | ||
{ | ||
// @component ./CheckboxItem.tsx | ||
Item: CheckboxItem, | ||
// @component ./CheckboxAndroid.tsx | ||
Android: CheckboxAndroid, | ||
// @component ./CheckboxIOS.tsx | ||
IOS: CheckboxIOS, | ||
} | ||
); | ||
|
||
export default Checkbox; |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import FABComponent from './FAB'; | ||
import FABGroup from './FABGroup'; | ||
|
||
const FAB = Object.assign( | ||
// @component ./FAB.tsx | ||
FABComponent, | ||
{ | ||
// @component ./FABGroup.tsx | ||
Group: FABGroup, | ||
} | ||
); | ||
|
||
export default FAB; |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import RadioButtonComponent from './RadioButton'; | ||
import RadioButtonGroup from './RadioButtonGroup'; | ||
import RadioButtonAndroid from './RadioButtonAndroid'; | ||
import RadioButtonIOS from './RadioButtonIOS'; | ||
import RadioButtonItem from './RadioButtonItem'; | ||
|
||
const RadioButton = Object.assign( | ||
// @component ./RadioButton.tsx | ||
RadioButtonComponent, | ||
{ | ||
// @component ./RadioButtonGroup.tsx | ||
Group: RadioButtonGroup, | ||
// @component ./RadioButtonAndroid.tsx | ||
Android: RadioButtonAndroid, | ||
// @component ./RadioButtonIOS.tsx | ||
IOS: RadioButtonIOS, | ||
// @component ./RadioButtonItem.tsx | ||
Item: RadioButtonItem, | ||
} | ||
); | ||
|
||
export default RadioButton; |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import ToggleButtonComponent from './ToggleButton'; | ||
import ToggleButtonGroup from './ToggleButtonGroup'; | ||
import ToggleButtonRow from './ToggleButtonRow'; | ||
|
||
const ToggleButton = Object.assign( | ||
// @component ./ToggleButton.tsx | ||
ToggleButtonComponent, | ||
{ | ||
// @component ./ToggleButtonGroup.tsx | ||
Group: ToggleButtonGroup, | ||
// @component ./ToggleButtonRow.tsx | ||
Row: ToggleButtonRow, | ||
} | ||
); | ||
|
||
export default ToggleButton; |
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
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
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
Oops, something went wrong.