Skip to content

Commit

Permalink
💫 Update: Ex - Test Card Title/Desc
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Mar 9, 2023
1 parent ff5a1d6 commit 9a70e82
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
14 changes: 12 additions & 2 deletions example/src/examples/Test02.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,18 @@ export class Test02 extends React.PureComponent<ExampleProps, Test02State> {
style={props.style}
index={props.index}
title={'Test02'}
subtitle={'TBA'}
description={['TBA']}
subtitle={''}
description={[
// prettier-ignore
// eslint-disable-next-line prettier/prettier
'Cycle through `modalBGBlurEffectStyle` styles, and show/hide '
+ 'multiple modals one after the other',

// prettier-ignore
// eslint-disable-next-line prettier/prettier
'Test for checking if async `setVisibility` resolves properly after a'
+ 'modal is shown or hidden',
]}
>
<React.Fragment>
<TestModal
Expand Down
5 changes: 4 additions & 1 deletion example/src/examples/Test03.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ export function Test03(props: ExampleProps) {
index={props.index}
title={'Test03'}
subtitle={'test - modal events'}
description={['desc - TBA']}
description={[
'Logs all modal-related events.',
'Test for checking if the modal events trigger correctly.',
]}
>
<ModalView
// TBA
Expand Down
7 changes: 5 additions & 2 deletions example/src/examples/Test06/Test06.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ export function Test06(props: ExampleProps) {
style={props.style}
index={props.index}
title={'Test06'}
subtitle={'test - TBA'}
description={['desc - TBA']}
subtitle={'Modal Focus/Blur Event Test'}
description={[
'Test for checking whether the modal focus/blur events ' +
'are firing when a new modal is shown (and steals focus).',
]}
>
<ModalGroup ref={modalGroupRef} />
<CardButton
Expand Down

0 comments on commit 9a70e82

Please sign in to comment.