-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Box, Columns, Inline, and Stack design system components (#434
) Co-authored-by: Frankie Yan <[email protected]>
- Loading branch information
1 parent
3c008ba
commit fdcc5be
Showing
40 changed files
with
2,307 additions
and
36 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -125,6 +125,7 @@ | |
}, | ||
"dependencies": { | ||
"dayjs": "^1.8.10", | ||
"react-keyed-flatten-children": "^1.3.0", | ||
"reakit": "1.3.0" | ||
} | ||
} |
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,43 +1,31 @@ | ||
export { default as Avatar } from './components/avatar' | ||
import './new-components/default-styles.less' | ||
|
||
export { Box } from './new-components/box' | ||
export { Columns } from './new-components/columns' | ||
export { default as Avatar } from './components/avatar' | ||
export { default as Button } from './components/button' | ||
|
||
export { default as Checkbox } from './components/checkbox' | ||
|
||
export { default as ColorPicker, COLORS } from './components/color-picker' | ||
|
||
export { default as Dropdown } from './components/dropdown' | ||
|
||
export { default as ErrorMessage } from './components/error-message' | ||
|
||
export { default as Icon } from './components/icon' | ||
|
||
export { default as Input } from './components/input' | ||
|
||
export { default as KeyCapturer, SUPPORTED_KEYS } from './components/key-capturer' | ||
|
||
export { default as KeyboardShortcut } from './components/keyboard-shortcut' | ||
|
||
export { default as KeyCapturer, SUPPORTED_KEYS } from './components/key-capturer' | ||
export { default as Loading } from './components/loading' | ||
|
||
export * from './components/menu' | ||
|
||
export { default as Modal } from './components/modal' | ||
|
||
export { Notification } from './components/notification/notification' | ||
|
||
export { default as Popover } from './components/popover' | ||
export { default as ProgressBar } from './components/progress-bar' | ||
|
||
export { default as RangeInput } from './components/range-input' | ||
|
||
export { default as Select } from './components/select' | ||
|
||
export { Tabs, Tab } from './components/tabs' | ||
|
||
export { default as Time } from './components/time' | ||
|
||
export { default as Tip } from './components/tip' | ||
|
||
export { Divider } from './new-components/divider' | ||
export { Heading } from './new-components/heading' | ||
export { Inline } from './new-components/inline' | ||
export { Notification } from './components/notification/notification' | ||
export { Stack } from './new-components/stack' | ||
export { Tabs, Tab } from './components/tabs' | ||
export { Text } from './new-components/text' | ||
export { Tooltip, TooltipProps } from './components/tooltip' | ||
|
||
export { default as Popover } from './components/popover' | ||
export * from './components/menu' |
Oops, something went wrong.