Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding readOnly prop styles to form inputs #391

Merged
merged 3 commits into from
Feb 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Added horizontal steps component ([#375](https://github.com/elastic/eui/pull/375))
- Changed look and feel of pagination. Added compressed prop for smaller footprint pagination. ([#380](https://github.com/elastic/eui/pull/380))
- Added `EuiBasicTable` as an opinionated, high level component for constructing tables. Its addition deprecates `EuiTableOfRecords` which is still avaiable, but now marked for removal. ([#377](https://github.com/elastic/eui/pull/377))
- Add styles for `readOnly` states of form controls. ([#391](https://github.com/elastic/eui/pull/391))

**Bug fixes**

Expand Down
39 changes: 39 additions & 0 deletions src-docs/src/views/form/form_controls_readonly.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import React from 'react';

import {
EuiFieldPassword,
EuiFieldText,
EuiFlexGroup,
EuiFlexItem,
EuiFormRow,
EuiButton,
} from '../../../../src/components';

export default () => (
<div>

<EuiFlexGroup style={{ maxWidth: 600 }}>
<EuiFlexItem>
<EuiFormRow>
<EuiFieldText
readOnly
defaultValue="[email protected]"
/>
</EuiFormRow>
</EuiFlexItem>
<EuiFlexItem>
<EuiFormRow>
<EuiFieldPassword
defaultValue="password"
/>
</EuiFormRow>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiFormRow>
<EuiButton>Save</EuiButton>
</EuiFormRow>
</EuiFlexItem>
</EuiFlexGroup>

</div>
);
22 changes: 22 additions & 0 deletions src-docs/src/views/form/form_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ import Loading from './form_controls_loading';
const loadingSource = require('!!raw-loader!./form_controls_loading');
const loadingHtml = renderToHtml(Loading);

import ReadOnly from './form_controls_readonly';
const readOnlySource = require('!!raw-loader!./form_controls_readonly');
const readOnlyHtml = renderToHtml(ReadOnly);

export const FormExample = {
title: 'Form',
sections: [{
Expand Down Expand Up @@ -252,6 +256,24 @@ export const FormExample = {
</p>
),
demo: <InlineFormPopover />,
}, {
title: 'Fields can be in a readonly state',
source: [{
type: GuideSectionTypes.JS,
code: readOnlySource,
}, {
type: GuideSectionTypes.HTML,
code: readOnlyHtml,
}],
text: (
<p>
Add <EuiCode>readOnly</EuiCode> to almost any field level (text, number)
component to put it in a readonly state. This will just display the content of the
control and remove any interactions. It is especially handy when using inline forms
with non-editable fields.
</p>
),
demo: <ReadOnly />,
}],
};

7 changes: 7 additions & 0 deletions src/components/form/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@ $euiFormBackgroundColor: tintOrShade($euiColorLightestShade, 60%, 25%);
background: darken($euiColorLightestShade, 2%);
box-shadow: 0 0 0 1px transparentize($euiColorFullShade, .92);
}

&[readOnly] {
cursor: default;
background: transparent;
border-color: transparent;
box-shadow: none;
}
}

@import 'checkbox/index';
Expand Down