terra-markdown
Advanced tools
Comparing version 2.10.0 to 2.11.0
@@ -7,2 +7,11 @@ Changelog | ||
2.11.0 - (July 17, 2018) | ||
------------------ | ||
### Changed | ||
* Minor dependency version bump | ||
* Formatting changes per eslint v4 update | ||
### Fixed | ||
* Removed usage of CSS `initial` value because Internet Explorer does not support it | ||
2.10.0 - (June 28, 2018) | ||
@@ -9,0 +18,0 @@ ------------------ |
@@ -45,3 +45,3 @@ 'use strict'; | ||
className: 'markdown-body', | ||
style: { listStyle: 'initial' }, | ||
style: { listStyle: 'disc outside none' }, | ||
dangerouslySetInnerHTML: { __html: (0, _marked2.default)(props.src) } | ||
@@ -48,0 +48,0 @@ }); |
{ | ||
"name": "terra-markdown", | ||
"main": "lib/Markdown.js", | ||
"version": "2.10.0", | ||
"version": "2.11.0", | ||
"description": "terra-markdown", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -25,4 +25,4 @@ import React from 'react'; | ||
dir="ltr" | ||
className={'markdown-body'} | ||
style={{ listStyle: 'initial' }} | ||
className="markdown-body" | ||
style={{ listStyle: 'disc outside none' }} | ||
dangerouslySetInnerHTML={{ __html: marked(props.src) }} | ||
@@ -29,0 +29,0 @@ /> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21548