Skip to content

Commit

Permalink
do not implement tooltip yet
Browse files Browse the repository at this point in the history
  • Loading branch information
retrofox committed Jan 29, 2024
1 parent 1f5c7c5 commit f1aef26
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
"help": {
"type": "string"
},
"tooltip": {
"type": "string"
},
"required": {
"type": "string"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ export function TextAreaBlockEdit( {
label,
placeholder,
help,
align,
tooltip,
required,
disabled,
align,
allowedFormats,
direction,
disabled,
} = attributes;
const blockProps = useWooBlockProps( attributes, {
style: { direction },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export type TextAreaBlockEditAttributes = ProductEditorBlockAttributes & {
label?: string;
placeholder?: string;
help?: string;
tooltip?: string;
required?: boolean;
disabled?: boolean;
align?: 'left' | 'center' | 'right' | 'justify';
Expand Down

0 comments on commit f1aef26

Please sign in to comment.