Skip to content

Commit 9afc03b

Browse files
committed
Remove things that dont make sense in open source
1 parent e492296 commit 9afc03b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+172
-1145
lines changed

components/FeedbackDialog/FeedbackDialog.example.js

Lines changed: 0 additions & 52 deletions
This file was deleted.

components/FeedbackDialog/FeedbackDialog.react.js

Lines changed: 0 additions & 217 deletions
This file was deleted.

components/FeedbackDialog/FeedbackDialog.scss

Lines changed: 0 additions & 10 deletions
This file was deleted.

components/Fieldset/Fieldset.example.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ export const demos = [
1818
render: () => (
1919
<Fieldset
2020
legend='I am Legend'
21-
description='In which Will Smith ruins a profoundly philosophical novel.'>
21+
description='I am description.'>
2222
<Field
23-
label={<Label text='Are you a monster hunter?' description='Or have you become the monster' />}
23+
label={<Label text='Label Text' description='Label Description' />}
2424
input={<Toggle value={true} type={Toggle.Types.YES_NO} onChange={function() {}} />} />
2525
</Fieldset>
2626
)

components/FlowFooter/FlowFooter.react.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* This source code is licensed under the license found in the LICENSE file in
66
* the root directory of this source tree.
77
*/
8-
import React from 'react';
9-
import PropTypes from 'lib/PropTypes';
10-
import styles from 'components/FlowFooter/FlowFooter.scss';
8+
import React from 'react';
9+
import PropTypes from 'lib/PropTypes';
10+
import styles from 'components/FlowFooter/FlowFooter.scss';
1111

1212
let FlowFooter = ({ primary, secondary, errorMessage, borderTop, children }) => (
1313
<div className={styles.footer} style={borderTop ? { borderTop } : null}>
@@ -36,6 +36,6 @@ FlowFooter.propTypes = {
3636
'Style override for footer border-top.'
3737
),
3838
children: PropTypes.node.describe(
39-
'The text of the footer. <strong> tags will be rendered in blue.'
39+
'The text of the footer. <strong> tags will be rendered in bold.'
4040
),
4141
}

components/FormButton/FormButton.example.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* This source code is licensed under the license found in the LICENSE file in
66
* the root directory of this source tree.
77
*/
8-
import React from 'react';
9-
import Field from 'components/Field/Field.react';
10-
import Fieldset from 'components/Fieldset/Fieldset.react';
8+
import React from 'react';
9+
import Field from 'components/Field/Field.react';
10+
import Fieldset from 'components/Fieldset/Fieldset.react';
1111
import FormButton from 'components/FormButton/FormButton.react';
12-
import Label from 'components/Label/Label.react';
12+
import Label from 'components/Label/Label.react';
1313

1414
export const component = FormButton;
1515

@@ -21,8 +21,8 @@ export const demos = [
2121
label={<Label text='Cool button' description='It does something.' />}
2222
input={<FormButton value='Do something cool' />} />
2323
<Field
24-
label={<Label text='Danger danger' description='This will delete everything.' />}
25-
input={<FormButton color='red' value='Break it all' />} />
24+
label={<Label text='Danger danger' description='Danger button.' />}
25+
input={<FormButton color='red' value='Do dangerous thing' />} />
2626
</Fieldset>
2727
)
2828
}

0 commit comments

Comments
 (0)