-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: ant design system #9
Merged
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
4ab1138
wrap Ant Button, add stories for Type
jared-dickman 7ace585
Commit generated CSS
jared-dickman 61dd8a9
touch directory structure, move stories next to components
jared-dickman c38d19a
add wrapped Dropdown with initial story
jared-dickman a9c7aac
Merge remote-tracking branch 'origin/feat/ant-design' into feat/ant-d…
jared-dickman 0ded728
Commit generated CSS
jared-dickman ae8393d
technically default autocomplete working, but i have some question
jared-dickman 10b869f
Merge remote-tracking branch 'origin/feat/ant-design' into feat/ant-d…
jared-dickman bbfef92
Commit generated CSS
jared-dickman 0e178ff
two examples with state
jared-dickman 10b96b6
Merge remote-tracking branch 'origin/feat/ant-design' into feat/ant-d…
jared-dickman 9ea06b2
Commit generated CSS
jared-dickman fffd9bc
add Input component
jared-dickman 3c8f4a8
add Modal component
jared-dickman db479fb
Add folder to component titles
jared-dickman 97cda0d
add autodocs for all components
jared-dickman 8408bca
Merge remote-tracking branch 'origin/feat/ant-design' into feat/ant-d…
jared-dickman c3c7fb2
add .idea folder to .gitignore
jared-dickman c2eefca
Default all stories to layout: centered
jared-dickman 7b515df
Commit generated CSS
jared-dickman 3914767
Update preview to typescript
jared-dickman 6f4e1a7
Update csf 2->3
jared-dickman d26983c
Merge remote-tracking branch 'origin/feat/ant-design' into feat/ant-d…
jared-dickman 579828f
Commit generated CSS
jared-dickman 9cd68f5
Consistent formatting for story meta
jared-dickman 8ad8c12
Add Skeleton Component
jared-dickman d7858e0
Add Result Component
jared-dickman f7d2b51
Add initial custom hooks
jared-dickman 616ba1a
Add LoadingModal Component
jared-dickman a5b78c5
Merge remote-tracking branch 'origin/feat/ant-design' into feat/ant-d…
jared-dickman 9aa225f
Commit generated CSS
jared-dickman 0432b98
Add DatePicker Component
jared-dickman 83223e2
Update Input Component, remove copy prop
jared-dickman 996b8b9
Update Loading Modal structure
jared-dickman 2a3d4a7
remove debugger
jared-dickman 8923cfc
Update Loading Modal stories type
jared-dickman 2a7535f
Add basic annotation modal component
jared-dickman 4d5e0eb
herge branch 'feat/ant-design' of github.com:mParticle/aquarium into …
jared-dickman 0f67f8d
Commit generated CSS
jared-dickman 317ce71
Merge remote-tracking branch 'origin/main' into feat/ant-design
jared-dickman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
/** @type { import('@storybook/react').Preview } */ | ||
const preview = { | ||
import type { Preview } from "@storybook/react"; | ||
|
||
const preview: Preview = { | ||
parameters: { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
|
||
layout: "centered", | ||
|
||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i, | ||
}, | ||
}, | ||
}, | ||
} | ||
}; | ||
|
||
export default preview | ||
export default preview; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changing the structure so stories live next to the components, just like tests/styles probably will