diff --git a/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.component.js b/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.component.js
index adb2e8147..1d9cea5e6 100644
--- a/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.component.js
+++ b/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.component.js
@@ -93,21 +93,21 @@ TextInputRow.propTypes = {
}
TextInputRow.defaultProps = {
- type: null,
+ type: "text",
value: "",
- name: null,
- label: null,
- id: null,
- placeholder: null,
- helptext: null,
- required: null,
+ name: "",
+ label: "",
+ id: "",
+ placeholder: "",
+ helptext: "",
+ required: false,
invalid: false,
errortext: "",
valid: false,
successtext: "",
autoFocus: false,
className: "",
- disabled: null,
+ disabled: false,
onChange: undefined,
onFocus: undefined,
onBlur: undefined,
diff --git a/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.stories.js b/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.stories.js
index baa7b81d2..c6a493f17 100644
--- a/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.stories.js
+++ b/libs/juno-ui-components/src/components/TextInputRow/TextInputRow.stories.js
@@ -4,325 +4,134 @@ import { TextInputRow } from './index.js';
export default {
title: 'Deprecated/TextInputRow',
component: TextInputRow,
- parameters: {
- docs: {
- description: {
- component:
- 'DEPRECATED: A text input row containing an input of type text, password, email, tel, or url, an associated label, and necessary structural markup. This component is DEPRECATED, use TextInput instead.',
- },
- },
- },
argTypes: {
type: {
options: ['text', 'password', 'email', 'tel', 'url', 'number'],
control: { type: 'select' },
},
- errortext: {
- control: false,
- },
- helptext: {
- control: false,
- },
- successtext: {
- control: false,
- },
children: {
control: false,
},
},
};
-export const Default = {
- args: {
- type: null,
- value: '',
- name: '',
- id: '',
- placeholder: '',
- helptext: '',
- required: false,
- invalid: false,
- errortext: '',
- valid: false,
- successtext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- label: 'Text Input Row',
- },
-};
-
-export const Disabled = {
- args: {
- type: null,
- value: '',
- name: '',
- id: '',
- placeholder: '',
- helptext: '',
- required: false,
- invalid: false,
- errortext: '',
- valid: false,
- successtext: '',
- autoFocus: false,
- className: '',
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- label: 'Disabled Text Input Row',
- disabled: true,
- },
-
- parameters: {
- docs: {
- description: {
- story: 'Set `disabled` to true to disable the input.',
- },
- },
- },
-};
-
-export const WithHelpText = {
- args: {
- type: null,
- value: '',
- id: '',
- placeholder: '',
- required: false,
- invalid: false,
- errortext: '',
- valid: false,
- successtext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- name: 'my-input',
- label: 'Text Input Row with Help Text',
- helptext: 'Oh so helpful helptext',
- },
-};
-
-export const WithHelpTextWithLink = {
- args: {
- type: null,
- value: '',
- id: '',
- placeholder: '',
- required: false,
- invalid: false,
- errortext: '',
- valid: false,
- successtext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- name: 'my-input',
- label: 'Text Input Row with Help Text containing a link',
- helptext: helptext,
- },
-};
-
-const helptext = (
- <>
- Helptext with a Link
- >
-);
-
-export const Required = {
- args: {
- type: null,
- value: '',
- id: '',
- placeholder: '',
- invalid: false,
- errortext: '',
- valid: false,
- successtext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- label: 'Required Input Row',
- required: true,
- helptext: 'this field is required',
- },
-
- parameters: {
- docs: {
- description: {
- story:
- 'Setting `required` to true to render the required marker to the label. Note that this will not set the html-`required` attribute in the rendered. You will have to manage checking for completeness and showing error messages yourself.',
- },
- },
- },
-};
-
-export const Invalid = {
- args: {
- type: null,
- value: '',
- id: '',
- placeholder: '',
- errortext: '',
- valid: false,
- successtext: '',
- helptext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- required: true,
- label: 'Invalid Input Row',
- invalid: true,
- },
-
- parameters: {
- docs: {
- description: {
- story:
- 'Set `invalid` to true to invalidate the field and render the associated styles and the icon.',
- },
- },
- },
-};
-
-export const WithErrorText = {
- args: {
- type: null,
- value: '',
- id: '',
- placeholder: '',
- valid: false,
- successtext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- required: true,
- invalid: true,
- label: 'Input Row with Error Text',
- helptext: 'Oh so helpful helptext',
- errortext: 'When passed an errortext prop, the InputRow will be set to invalid automatically.',
- },
-
- parameters: {
- docs: {
- description: {
+const Template = ({...args}) => ()
+
+export const Default = Template.bind({})
+Default.args= {
+ label: "Default TextINputRow",
+}
+
+
+export const Disabled = Template.bind({})
+Disabled.args = {
+ label: "Disabled TextInputRow",
+ disabled: true,
+}
+
+
+export const WithHelpText = Template.bind({})
+WithHelpText.args = {
+ label: 'Text Input Row with Help Text',
+ helptext: 'Oh so helpful helptext',
+}
+
+
+export const WithHelpTextWithLink = Template.bind({})
+WithHelpTextWithLink.args = {
+ label: 'Text Input Row with Help Text containing a link',
+ helptext: <> Helptext with a Link>
+}
+
+
+
+export const Required = Template.bind({})
+Required.parameters = {
+ docs: {
+ description: {
+ story:
+ 'Setting `required` to true to render the required marker to the label. Note that this will not set the html-`required` attribute in the rendered. You will have to manage checking for completeness and showing error messages yourself.',
+ }
+ }
+}
+Required.args = {
+ label: 'Required Input Row',
+ required: true,
+ helptext: 'this field is required',
+}
+
+export const Invalid = Template.bind({})
+Invalid.parameters = {
+ docs: {
+ description: {
+ story:
+ 'Set `invalid` to true to invalidate the field and render the associated styles and the icon.',
+ }
+ }
+}
+Invalid.args = {
+ required: true,
+ label: 'Invalid Input Row',
+ invalid: true,
+}
+
+
+
+
+export const WithErrorText = Template.bind({})
+WithErrorText.parameters = {
+ docs: {
+ description: {
story:
'Passing an `errortext` prop to the TextInputRow component will automatically invalidate it, so there is no need to explicitly set `invalid` as well.',
- },
- },
- },
-};
-
-export const Valid = {
- args: {
- type: null,
- value: '',
- name: '',
- id: '',
- placeholder: '',
- helptext: '',
- required: false,
- invalid: false,
- errortext: '',
- successtext: '',
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- label: 'Valid Input Row',
- valid: true,
- },
-
- parameters: {
- docs: {
- description: {
- story:
- 'Set `valid` to true to set the field to valid and render the associated styles and the icon.',
- },
- },
- },
-};
-
-export const WithSuccessText = {
- args: {
- type: null,
- value: '',
- name: '',
- id: '',
- placeholder: '',
- required: false,
- invalid: false,
- errortext: '',
- valid: false,
- autoFocus: false,
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- label: 'Input Row with Success Text',
- helptext: 'Oh so helpful helptext',
- successtext:
- 'When passed an errortext prop, the InputRow will be set to invalid automatically.',
- },
-
- parameters: {
- docs: {
- description: {
- story:
- 'Passing a `successtext` prop to the TextInputRow component will automatically set it to valid, so there is no need to explicitly set `valid` as well.',
- },
- },
- },
-};
-
-export const Autofocus = {
- args: {
- type: null,
- value: '',
- name: '',
- id: '',
- placeholder: '',
- helptext: '',
- required: false,
- invalid: false,
- errortext: '',
- valid: false,
- successtext: '',
- className: '',
- disabled: false,
- onChange: undefined,
- onFocus: undefined,
- onBlur: undefined,
- autoFocus: true,
- label: 'Text Input Row',
- },
-
- parameters: {
- docs: {
- description: {
- story: 'Set `autoFocus` to true to automatically focus the input.',
- },
- },
- },
-};
+ }
+ }
+}
+WithErrorText.args = {
+ label: 'Input Row with Error Text',
+ helptext: 'Oh so helpful helptext',
+ errortext: 'When passed an errortext prop, the InputRow will be set to invalid automatically.',
+}
+
+
+export const Valid = Template.bind({})
+Valid.parameters = {
+ docs: {
+ description: {
+ story:
+ 'Set `valid` to true to set the field to valid and render the associated styles and the icon.',
+ }
+ }
+}
+Valid.args = {
+ label: 'Valid Input Row',
+ valid: true,
+}
+
+export const WithSuccessText = Template.bind({})
+WithSuccessText.parameters = {
+ docs: {
+ description: {
+ story:
+ 'Passing a `successtext` prop to the TextInputRow component will automatically set it to valid, so there is no need to explicitly set `valid` as well.',
+ }
+ }
+}
+WithSuccessText.args = {
+ label: 'Input Row with Success Text',
+ successtext: 'When passed an errortext prop, the InputRow will be set to invalid automatically.',
+}
+
+
+export const Autofocus = Template.bind({})
+Autofocus.parameters = {
+ docs: {
+ description: {
+ story: 'Set `autoFocus` to true to automatically focus the input.',
+ }
+ }
+}
+Autofocus.args = {
+ autoFocus: true,
+ label: 'Text Input Row',
+}