Skip to content

Commit

Permalink
pkp/pkp-lib#9626 Add documentation for added new Tooltip props
Browse files Browse the repository at this point in the history
  • Loading branch information
blesildaramirez committed Oct 31, 2024
1 parent fe67219 commit 63db0a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Tooltip/Tooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ export default {
type: String,
required: true,
},
/** Indicates whether the icon should be displayed in normal size (16px) or smaller (14 px) */
iconSize: {
type: String,
default: () => 'normal',
validator: (value) => {
return ['normal', 'small'].includes(value);
},
},
/** Display mode of the icon container 'flex' or 'inline-block' (default) */
flex: {
type: Boolean,
default: () => false,
Expand Down

0 comments on commit 63db0a2

Please sign in to comment.