diff --git a/packages/components/src/form/ColorInput/ColorInput.js b/packages/components/src/form/ColorInput/ColorInput.js index 9af0b0db5..cf56aa961 100644 --- a/packages/components/src/form/ColorInput/ColorInput.js +++ b/packages/components/src/form/ColorInput/ColorInput.js @@ -163,6 +163,7 @@ const ColorInput = forwardRef( contentStyle={contentStyle} headerClassName={headerClassName} contentClassName={contentClassName} + readOnly={readOnly} {...props} > {readOnly ? ( diff --git a/packages/components/src/form/DatePicker/DatePicker.js b/packages/components/src/form/DatePicker/DatePicker.js index 5f520e562..bfb97e43f 100644 --- a/packages/components/src/form/DatePicker/DatePicker.js +++ b/packages/components/src/form/DatePicker/DatePicker.js @@ -191,6 +191,7 @@ const DatePicker = forwardRef( headerStyle={headerStyle} contentStyle={contentStyle} style={style} + readOnly={readOnly} > {readOnly ? ( diff --git a/packages/components/src/form/InputLabel/InputLabel.constants.js b/packages/components/src/form/InputLabel/InputLabel.constants.js index 57b674f0d..2d275e4b2 100644 --- a/packages/components/src/form/InputLabel/InputLabel.constants.js +++ b/packages/components/src/form/InputLabel/InputLabel.constants.js @@ -6,6 +6,7 @@ export const INPUT_LABEL_DEFAULT_PROPS = { withDescriptionIcon: false, required: false, showEmptyLabel: false, + readOnly: false, }; export const INPUT_LABEL_PROP_TYPES = { label: PropTypes.string, @@ -13,4 +14,5 @@ export const INPUT_LABEL_PROP_TYPES = { withDescriptionIcon: PropTypes.bool, required: PropTypes.bool, showEmptyLabel: PropTypes.bool, + readOnly: PropTypes.bool, }; diff --git a/packages/components/src/form/InputLabel/InputLabel.js b/packages/components/src/form/InputLabel/InputLabel.js index 3f2fe42e0..79ac6e559 100644 --- a/packages/components/src/form/InputLabel/InputLabel.js +++ b/packages/components/src/form/InputLabel/InputLabel.js @@ -12,9 +12,10 @@ const InputLabel = ({ withDescriptionIcon, required, showEmptyLabel, + readOnly, ...props }) => { - const { classes } = InputLabelStyles({}, { name: 'InputLabel' }); + const { classes } = InputLabelStyles({ readOnly }, { name: 'InputLabel' }); return ( diff --git a/packages/components/src/form/InputLabel/InputLabel.styles.js b/packages/components/src/form/InputLabel/InputLabel.styles.js index 54235ae3f..29d22620e 100644 --- a/packages/components/src/form/InputLabel/InputLabel.styles.js +++ b/packages/components/src/form/InputLabel/InputLabel.styles.js @@ -1,6 +1,6 @@ import { createStyles } from '@mantine/styles'; -const InputLabelStyles = createStyles((theme) => { +const InputLabelStyles = createStyles((theme, { readOnly }) => { const labelTheme = theme.other.label; return { @@ -12,6 +12,7 @@ const InputLabelStyles = createStyles((theme) => { label: { color: labelTheme.content.color.default, ...labelTheme.content.typo['02'], + fontWeight: readOnly ? 'bold' : 'normal', }, required: { marginLeft: labelTheme.spacing.gap.sm, diff --git a/packages/components/src/form/InputWrapper/InputWrapper.constants.js b/packages/components/src/form/InputWrapper/InputWrapper.constants.js index afba554c8..0ecc47f85 100644 --- a/packages/components/src/form/InputWrapper/InputWrapper.constants.js +++ b/packages/components/src/form/InputWrapper/InputWrapper.constants.js @@ -22,6 +22,7 @@ export const INPUT_WRAPPER_PROP_TYPES = { contentStyle: PropTypes.any, autoComplete: PropTypes.string, showEmptyLabel: PropTypes.bool, + readOnly: PropTypes.bool, }; export const INPUT_WRAPPER_DEFAULT_PROPS = { label: '', @@ -33,4 +34,5 @@ export const INPUT_WRAPPER_DEFAULT_PROPS = { required: false, autoComplete: 'off', disabled: false, + readOnly: false, }; diff --git a/packages/components/src/form/InputWrapper/InputWrapper.js b/packages/components/src/form/InputWrapper/InputWrapper.js index aeef2686c..b12497b2e 100644 --- a/packages/components/src/form/InputWrapper/InputWrapper.js +++ b/packages/components/src/form/InputWrapper/InputWrapper.js @@ -32,6 +32,7 @@ const InputWrapper = ({ style, formValues, showEmptyLabel, + readOnly, ...props }) => { const size = INPUT_WRAPPER_SIZES.includes(sizeProp) ? sizeProp : 'md'; @@ -60,6 +61,7 @@ const InputWrapper = ({ {...labelProps} description={description} withDescriptionIcon={withDescriptionIcon} + readOnly={readOnly} /> )} diff --git a/packages/components/src/form/ListInput/ListInput.js b/packages/components/src/form/ListInput/ListInput.js index bd66934e1..f5bd3cbba 100644 --- a/packages/components/src/form/ListInput/ListInput.js +++ b/packages/components/src/form/ListInput/ListInput.js @@ -149,6 +149,7 @@ const ListInput = ({ size={size} error={error} required={required} + readOnly={readonly} > {readOnly ? ( {props.value || props.defaultValue || ''} diff --git a/packages/components/src/form/Select/Select.constants.js b/packages/components/src/form/Select/Select.constants.js index 2f2bde4d0..a664edc8a 100644 --- a/packages/components/src/form/Select/Select.constants.js +++ b/packages/components/src/form/Select/Select.constants.js @@ -40,4 +40,5 @@ export const SELECT_PROP_TYPES = { autoComplete: PropTypes.string, readOnly: PropTypes.bool, autoSelectOneOption: PropTypes.bool, + withinPortal: PropTypes.bool, }; diff --git a/packages/components/src/form/Select/Select.js b/packages/components/src/form/Select/Select.js index 2a1cfb905..735bd984d 100644 --- a/packages/components/src/form/Select/Select.js +++ b/packages/components/src/form/Select/Select.js @@ -144,7 +144,7 @@ const Select = forwardRef( {...props} > ) : ( - + {readOnly ? ( {dataValue} ) : ( diff --git a/packages/components/src/form/TextInput/TextInput.js b/packages/components/src/form/TextInput/TextInput.js index 0f33040c0..6e51f8920 100644 --- a/packages/components/src/form/TextInput/TextInput.js +++ b/packages/components/src/form/TextInput/TextInput.js @@ -93,7 +93,7 @@ const TextInput = forwardRef( }, [variant]); return ( - + {readOnly ? ( {value || defaultValue || ''} ) : ( diff --git a/packages/components/src/form/Textarea/Textarea.js b/packages/components/src/form/Textarea/Textarea.js index 30d65aabd..a454fc2ac 100644 --- a/packages/components/src/form/Textarea/Textarea.js +++ b/packages/components/src/form/Textarea/Textarea.js @@ -124,6 +124,7 @@ const Textarea = forwardRef( return (