-
Notifications
You must be signed in to change notification settings - Fork 841
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
Input groups #961
Merged
Merged
Input groups #961
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
f5f82c6
Updating filter buttons and group styles
8c01c96
Using form layout and notifications
27f04ae
Fixing icon padding
70bc54d
Control groups
c1b5c24
Simplifying from control styles
abc855f
form control layout children
c2e8a73
Simplifying form control styles
66647f0
Revert commit of filter_button.scss
2eea143
Get rid of terrible IE highlight when select is focused
d48cd3e
Squashed commit of the following:
37899c3
Updating to use prepend/append props
88b2fdd
Adding options to select, text, and number controls
15d201b
changelog
a4c2760
Merge remote-tracking branch 'cchaos/form-controls-styles' into filte…
6ea467c
Merge remote-tracking branch 'upstream/master' into filter-input-groups
9802500
Removing FormControlGroup
75b5e13
Merge remote-tracking branch 'upstream/master' into filter-input-groups
0af05cb
Get rid of console error
7c656a0
Updating filter groups
d19c365
Updating `EuiSearchBar`’s usage of filters
e0c9bfd
Added `DatePickerRange` component
130d872
Forgot to remove one more part of non-existent comp
96c2c0c
Merge remote-tracking branch 'upstream/master' into filter-input-groups
b7af0dd
changelog
39ab710
Merge remote-tracking branch 'upstream/master' into filter-input-groups
de21e4d
Merge remote-tracking branch 'upstream/master' into filter-input-groups
a5d4106
Merge remote-tracking branch 'upstream/master' into filter-input-groups
9ba5136
Addressed PR feedback
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export { | ||
COLORS, | ||
ICON_SIDES, | ||
EuiButtonEmpty, | ||
} from './button_empty'; |
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,4 +1,7 @@ | ||
export { EuiButton } from './button'; | ||
export { | ||
COLORS, | ||
EuiButton | ||
} from './button'; | ||
|
||
export { | ||
EuiButtonEmpty, | ||
|
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.
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.
maybe add simple validation to ensure the start date is before end date?
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.
Just for the doc example?
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.
Yeah, since validation lives outside the controls. Would be good to have a reference example.