Skip to content
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(components): add searchbar and refactor input #153

Merged
merged 66 commits into from
Sep 8, 2020
Merged
Show file tree
Hide file tree
Changes from 65 commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
f6f4ba4
feat: add message component.
Jun 11, 2020
dd36596
fix: fix message ui
Jun 11, 2020
784b676
fix: fix ui
Jun 12, 2020
bf46804
fix: change animate
Jun 12, 2020
8080cc1
fix: fix toast ui and add Toast.info function.
Jun 15, 2020
c99f0f9
Adding test: add toast tests.
Jun 15, 2020
ea1654b
feat: merge master
Jun 15, 2020
ef52fd8
docs: change demo text
Jun 15, 2020
7e1bd2c
Delete Playground.jsx
1eeing Jun 15, 2020
9244713
Update index.zh-CN.md
1eeing Jun 15, 2020
7661c91
Update index.zh-CN.md
1eeing Jun 15, 2020
6d933ef
Merge remote-tracking branch 'upstream/master'
Jul 28, 2020
037c76f
Merge remote-tracking branch 'upstream/master'
Aug 3, 2020
1e89947
Update
Aug 4, 2020
fc4ede1
Merge remote-tracking branch 'upstream/master'
Aug 4, 2020
7ce35be
feat: add Input component and replace Icon which in Toast component
Aug 5, 2020
dcaae99
fix: fix Icon in Toast
Aug 5, 2020
35b5de2
fix: replace icon
Aug 5, 2020
683b5fd
fix: fix icon in Toast
Aug 5, 2020
6e381f0
Merge remote-tracking branch 'upstream/master'
Aug 5, 2020
cbf3486
Fix lint
Aug 5, 2020
260ac2c
Fix cli and remove unused package.
Aug 5, 2020
1abfbc2
Delete
Aug 5, 2020
1c8d869
reset
Aug 5, 2020
f42b41f
some change.
Aug 6, 2020
130dee8
Update
Aug 10, 2020
c42f1fd
Add Drawer component
Aug 10, 2020
5418f5a
Merge remote-tracking branch 'upstream/master' into feature-drawer
Aug 10, 2020
1450964
Fix: lint fix
Aug 10, 2020
b456f32
Fix: fix icons' name.
Aug 10, 2020
ea2395e
Merge branch 'originMaster'
Aug 11, 2020
403cdf9
Merge branch 'master' into feature-drawer
Aug 11, 2020
04289d2
fix: some input fix.
Aug 11, 2020
445c222
Merge branch 'originMaster'
Aug 11, 2020
b58c219
Merge branch 'master' into feature-drawer
Aug 11, 2020
3342b59
fix: add eslint optional chain
Aug 11, 2020
74b5585
Fix comment
Aug 12, 2020
da73fb1
Merge branch 'originMaster' into feature-drawer
Aug 12, 2020
4fc4457
Add drawer
Aug 12, 2020
77ca365
Merge branch 'originMaster' into feature-drawer
Aug 12, 2020
bc53d7e
Delete
Aug 12, 2020
58ff83a
Merge branch 'feature-drawer' of github.com:1eeing/gio-design into fe…
Aug 12, 2020
a53df66
fix: fix drawer demo ui
Aug 12, 2020
c21153f
Merge branch 'master' into feature-drawer
jack0pan Aug 13, 2020
04f1b34
Merge branch 'originMaster'
Aug 14, 2020
b4c02d0
hide demo
Aug 14, 2020
7c6d16c
remove demo
Aug 14, 2020
0c803ac
Fix: add comet
Aug 14, 2020
8eff0f9
Fix: change input placeholder color
Aug 14, 2020
1bfe0ba
Merge branch 'originMaster'
Aug 17, 2020
3703dc8
add search bar component
Aug 19, 2020
811c59a
样式
Aug 20, 2020
cbeab0a
refactor input
Aug 21, 2020
9dd5232
Fix lint
Aug 21, 2020
9b528e3
feat: add searchbar component
Aug 24, 2020
8f43c41
feat: merge master
Aug 24, 2020
0bac46f
feat: merge master
Aug 24, 2020
80dd5ed
fix: fix lint error
Aug 25, 2020
bd7c775
Merge branch 'originMaster'
Aug 25, 2020
7539788
test: and tests for input drawer and searchbar
Sep 1, 2020
1a7eb7f
feat: merge master and change searchbar style path
Sep 1, 2020
476aa26
fix: fix comment
Sep 1, 2020
6724545
fix: delete unuseful lib
Sep 1, 2020
5cc43c8
fix: fix comments for input
Sep 8, 2020
22b9105
fix:delete unuseful less
Sep 8, 2020
eb821f2
merge master
Sep 8, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"rc-tooltip": "^4.2.1",
"rc-upload": "^3.2.0",
"rc-util": "^5.0.5",
"react-use": "^15.1.1",
"react-use": "^15.3.3",
"shallowequal": "^1.1.0"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions packages/components/src/components/config-provider/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
export { ConfigContext, ConfigConsumer } from './context';

export interface ConfigConsumerProps {
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string;
autoInsertSpaceInButton?: boolean;
virtual?: boolean;
direction?: 'ltr' | 'rtl';
dropdownMatchSelectWidth?: boolean;
}
Loading