diff --git a/packages/ui-library/src/components/forms/textarea/index.stories.ts b/packages/ui-library/src/components/forms/textarea/index.stories.ts index 7866427c6..3c29e6b8d 100644 --- a/packages/ui-library/src/components/forms/textarea/index.stories.ts +++ b/packages/ui-library/src/components/forms/textarea/index.stories.ts @@ -333,34 +333,34 @@ export default { }, // Events - onChange: { - name: 'onChange', + blrChange: { + name: 'blrChange', description: 'Fires when the value changes.', - action: 'onChange', + action: 'blrChange', table: { category: 'Events', }, }, - onFocus: { - name: 'onFocus', - description: 'Fires when the component is focused.', - action: 'onFocus', + blrSelect: { + name: 'blrSelect', + description: 'Fires when some text is selected.', + action: 'blrSelect', table: { category: 'Events', }, }, - onBlur: { - name: 'onBlur', - description: 'Fires when the component lost focus.', - action: 'onBlur', + blrFocus: { + name: 'blrFocus', + description: 'Fires when the component is focused.', + action: 'blrFocus', table: { category: 'Events', }, }, - onSelect: { - name: 'onSelect', - description: 'Fires when some text is selected.', - action: 'onSelect', + blrBlur: { + name: 'blrBlur', + description: 'Fires when the component lost focus.', + action: 'blrBlur', table: { category: 'Events', }, @@ -445,10 +445,10 @@ const argTypesToDisable = [ 'arialabel', 'textareaId', 'name', - 'onChange', - 'onFocus', - 'onBlur', - 'onSelect', + 'blrChange', + 'blrSelect', + 'blrFocus', + 'blrBlur', ]; const generateDisabledArgTypes = (argTypes: string[]) => { const disabledArgTypes = {};