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

EuiDelayRender #1876

Merged
merged 24 commits into from
Jun 3, 2019
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1098550
filter toggle buttons are labeled now as proper aria toggle buttons =…
PhilippBaranovskiy Apr 23, 2019
4999ac0
Introduces delay render component (similar to delay hide), which allo…
PhilippBaranovskiy Apr 23, 2019
b1b0b88
PR snapshots updates
PhilippBaranovskiy Apr 23, 2019
353895d
Merge branch 'master' into 749
PhilippBaranovskiy Apr 23, 2019
6bf2976
Adjusting delay timout to 500ms
PhilippBaranovskiy Apr 23, 2019
d2810f1
PR snapshots updates
PhilippBaranovskiy Apr 23, 2019
2dd03cd
put aria-label atts back as they are no longer needed
PhilippBaranovskiy Apr 23, 2019
1b7a592
review edits
PhilippBaranovskiy May 6, 2019
3c27943
Merge branch 'master' into 749
PhilippBaranovskiy May 6, 2019
6be035c
following up feedback comments
PhilippBaranovskiy May 7, 2019
b311622
following up feedback comments
PhilippBaranovskiy May 7, 2019
f1e0c93
...
PhilippBaranovskiy May 7, 2019
7fc3dec
Merge branch 'master' into 749
PhilippBaranovskiy May 13, 2019
35f536d
update snapshot
PhilippBaranovskiy May 13, 2019
d4ff07b
set initial render as delayed
PhilippBaranovskiy May 13, 2019
d32b799
update documentation
PhilippBaranovskiy May 13, 2019
c17604b
update change log
PhilippBaranovskiy May 13, 2019
4c00a6c
string parameters conversion, snapshot updating
PhilippBaranovskiy May 14, 2019
7b38907
update snapshots
PhilippBaranovskiy May 22, 2019
a229f79
Merge branch 'master' into 749
PhilippBaranovskiy May 22, 2019
06e7fca
Merge branch 'master' into 749
PhilippBaranovskiy May 23, 2019
2cd2630
Merge branch 'master' into 749
PhilippBaranovskiy May 30, 2019
426ef3b
Merge branch 'master' into 749
PhilippBaranovskiy May 31, 2019
ba897c7
Merge branch 'master' into 749
PhilippBaranovskiy Jun 1, 2019
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
Prev Previous commit
Next Next commit
...
PhilippBaranovskiy committed May 7, 2019
commit f1e0c93208dce61a0f1c5b99766e2cc596100cba
4 changes: 2 additions & 2 deletions src/components/delay_render/delay_render.tsx
Original file line number Diff line number Diff line change
@@ -19,8 +19,8 @@ export class EuiDelayRender extends Component<
private delayID: number | undefined;
private toBeDelayed: boolean = false;

constructor() {
super();
constructor(props: EuiDelayRenderProps) {
super(props);
this.state = {
toggle: false,
};