This repository has been archived by the owner on Dec 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: stories folder structures (#237)
Refactor directory structures in stories. Change a few prop types and mainly refactor [Accordion]. [Accordion] now gets flexible data type with required `renderTitle` and `renderItem` props. Remove fixed `aspectRatio` from [NetworkImage]. The image is now resizable from the outside. - Change [ProgressLine] to [ProgressBar] - Change [Checkbox] `type` prop to `color` - Organize icon types in one place
- Loading branch information
Showing
159 changed files
with
1,507 additions
and
1,555 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,3 +1,3 @@ | ||
import '../stories/components'; | ||
import '../stories/uis'; | ||
import '../stories/modals'; | ||
import '../stories/packages'; |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
export * from './components/Typography'; | ||
export * from './components/RadioGroup'; | ||
export * from './uis/Typography'; | ||
export * from './uis/RadioGroup'; | ||
export * from './modals/Snackbar'; | ||
export * from './components/Icon'; | ||
export * from './components/Hr'; | ||
export * from './components/Button'; | ||
export * from './components/ButtonGroup'; | ||
export * from './components/IconButton'; | ||
export * from './components/Checkbox'; | ||
export * from './components/EditText'; | ||
export * from './components/NetworkImage'; | ||
export * from './components/ProgressLine'; | ||
export * from './components/ProgressCircle'; | ||
export * from './components/LoadingIndicator'; | ||
export * from './components/Accordion'; | ||
export * from './components/StatusbarBrightness'; | ||
export * from './components/SwitchToggle'; | ||
export * from './components/FAB'; | ||
export * from './uis/Icon'; | ||
export * from './uis/Hr'; | ||
export * from './uis/Button'; | ||
export * from './uis/ButtonGroup'; | ||
export * from './uis/IconButton'; | ||
export * from './uis/Checkbox'; | ||
export * from './uis/EditText'; | ||
export * from './uis/NetworkImage'; | ||
export * from './uis/ProgressBar'; | ||
export * from './uis/ProgressCircle'; | ||
export * from './uis/LoadingIndicator'; | ||
export * from './uis/Accordion'; | ||
export * from './uis/StatusbarBrightness'; | ||
export * from './uis/SwitchToggle'; | ||
export * from './uis/FAB'; | ||
export * from './providers'; |
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.