Skip to content

Commit

Permalink
Merge pull request #5890 from pat270/LPD-41004
Browse files Browse the repository at this point in the history
fix(@clayui/modal): LPD-41004 clayui.com Modal should list more detai…
  • Loading branch information
matuzalemsteles authored Nov 12, 2024
2 parents 94e6104 + 821a939 commit 9cd4413
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/clay-modal/src/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Header, {
TitleSection,
} from './Header';
import {useUserInteractions} from './Hook';
import {Observer, ObserverType, Size} from './types';
import {Observer, ObserverType} from './types';

interface IProps
extends React.HTMLAttributes<HTMLDivElement>,
Expand Down Expand Up @@ -52,7 +52,7 @@ interface IProps
/**
* The size of element modal.
*/
size?: Size;
size?: 'full-screen' | 'lg' | 'sm';

/**
* Observer is Modal's communication system with `useModal`
Expand All @@ -74,7 +74,7 @@ const warningMessage = `You need to pass the 'observer' prop to ClayModal for ev
> <ClayModal observer={observer}>
> ...
> </ClayModal>
> );
> );
`;

let counter = 0;
Expand Down

0 comments on commit 9cd4413

Please sign in to comment.