@storybook/components
Advanced tools
Comparing version 3.2.7 to 3.3.0-alpha.0
@@ -34,2 +34,35 @@ 'use strict'; | ||
var _highlight_button = require('./highlight_button'); | ||
Object.defineProperty(exports, 'HighlightButton', { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_highlight_button).default; | ||
} | ||
}); | ||
var _table = require('./table/table'); | ||
Object.defineProperty(exports, 'Table', { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_table).default; | ||
} | ||
}); | ||
var _cell = require('./table/cell'); | ||
Object.defineProperty(exports, 'Td', { | ||
enumerable: true, | ||
get: function get() { | ||
return _cell.td; | ||
} | ||
}); | ||
Object.defineProperty(exports, 'Th', { | ||
enumerable: true, | ||
get: function get() { | ||
return _cell.th; | ||
} | ||
}); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
{ | ||
"name": "@storybook/components", | ||
"version": "3.2.7", | ||
"version": "3.3.0-alpha.0", | ||
"description": "Core Storybook Components", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -5,1 +5,4 @@ export { baseFonts } from './theme'; | ||
export { default as MenuLink } from './navigation/menu_link'; | ||
export { default as HighlightButton } from './highlight_button'; | ||
export { default as Table } from './table/table'; | ||
export { td as Td, th as Th } from './table/cell'; |
@@ -27,7 +27,3 @@ import PropTypes from 'prop-types'; | ||
const props = { href, ...rest, onClick }; | ||
return ( | ||
<a {...props}> | ||
{children} | ||
</a> | ||
); | ||
return <a {...props}>{children}</a>; | ||
} | ||
@@ -34,0 +30,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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
17304
18
455
2