Skip to content

Commit fc359cb

Browse files
committed
add missing props
1 parent 5039aa3 commit fc359cb

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

packages/react-core/src/components/ClipboardCopy/ClipboardCopy.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ export interface ClipboardCopyProps extends Omit<React.HTMLProps<HTMLDivElement>
8787
children: React.ReactNode;
8888
/** Additional actions for inline clipboard copy. Should be wrapped with ClipboardCopyAction. */
8989
additionalActions?: React.ReactNode;
90+
/** Value to overwrite the randomly generated data-ouia-component-id.*/
91+
ouiaId?: number | string;
92+
/** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */
93+
ouiaSafe?: boolean;
9094
}
9195

9296
export class ClipboardCopy extends React.Component<ClipboardCopyProps, ClipboardCopyState> {

0 commit comments

Comments
 (0)