@hig/rich-text
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -1,2 +0,2 @@ | ||
import React from 'react'; | ||
import React, { Component } from 'react'; | ||
import PropTypes from 'prop-types'; | ||
@@ -84,31 +84,55 @@ import { css, cx } from 'emotion'; | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } | ||
var RichText = function RichText(props) { | ||
return React.createElement( | ||
ThemeContext.Consumer, | ||
null, | ||
function (_ref) { | ||
var resolvedRoles = _ref.resolvedRoles; | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
var children = props.children, | ||
dangerouslySetInnerHTML = props.dangerouslySetInnerHTML, | ||
otherProps = _objectWithoutProperties(props, ["children", "dangerouslySetInnerHTML"]); | ||
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } | ||
var className = otherProps.className; | ||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } | ||
var styles = stylesheet(props, resolvedRoles); | ||
return children ? React.createElement( | ||
"div", | ||
{ className: cx(css(styles.richText), className) }, | ||
children | ||
) : React.createElement("div", { | ||
className: cx(css(styles.richText), className), | ||
dangerouslySetInnerHTML: dangerouslySetInnerHTML // eslint-disable-line react/no-danger | ||
}); | ||
var RichText = function (_Component) { | ||
_inherits(RichText, _Component); | ||
function RichText() { | ||
_classCallCheck(this, RichText); | ||
return _possibleConstructorReturn(this, (RichText.__proto__ || Object.getPrototypeOf(RichText)).apply(this, arguments)); | ||
} | ||
_createClass(RichText, [{ | ||
key: "render", | ||
value: function render() { | ||
var _this2 = this; | ||
return React.createElement( | ||
ThemeContext.Consumer, | ||
null, | ||
function (_ref) { | ||
var resolvedRoles = _ref.resolvedRoles; | ||
var _props = _this2.props, | ||
children = _props.children, | ||
dangerouslySetInnerHTML = _props.dangerouslySetInnerHTML, | ||
otherProps = _objectWithoutProperties(_props, ["children", "dangerouslySetInnerHTML"]); | ||
var className = otherProps.className; | ||
var styles = stylesheet(_this2.props, resolvedRoles); | ||
return children ? React.createElement( | ||
"div", | ||
{ className: cx(css(styles.richText), className) }, | ||
children | ||
) : React.createElement("div", { | ||
className: cx(css(styles.richText), className), | ||
dangerouslySetInnerHTML: dangerouslySetInnerHTML // eslint-disable-line react/no-danger | ||
}); | ||
} | ||
); | ||
} | ||
); | ||
}; | ||
}]); | ||
RichText.displayName = "RichText"; | ||
return RichText; | ||
}(Component); | ||
@@ -115,0 +139,0 @@ RichText.propTypes = { |
@@ -7,3 +7,4 @@ 'use strict'; | ||
var React = _interopDefault(require('react')); | ||
var React = require('react'); | ||
var React__default = _interopDefault(React); | ||
var PropTypes = _interopDefault(require('prop-types')); | ||
@@ -91,31 +92,55 @@ var emotion = require('emotion'); | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } | ||
var RichText = function RichText(props) { | ||
return React.createElement( | ||
ThemeContext.Consumer, | ||
null, | ||
function (_ref) { | ||
var resolvedRoles = _ref.resolvedRoles; | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
var children = props.children, | ||
dangerouslySetInnerHTML = props.dangerouslySetInnerHTML, | ||
otherProps = _objectWithoutProperties(props, ["children", "dangerouslySetInnerHTML"]); | ||
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } | ||
var className = otherProps.className; | ||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } | ||
var styles = stylesheet(props, resolvedRoles); | ||
return children ? React.createElement( | ||
"div", | ||
{ className: emotion.cx(emotion.css(styles.richText), className) }, | ||
children | ||
) : React.createElement("div", { | ||
className: emotion.cx(emotion.css(styles.richText), className), | ||
dangerouslySetInnerHTML: dangerouslySetInnerHTML // eslint-disable-line react/no-danger | ||
}); | ||
var RichText = function (_Component) { | ||
_inherits(RichText, _Component); | ||
function RichText() { | ||
_classCallCheck(this, RichText); | ||
return _possibleConstructorReturn(this, (RichText.__proto__ || Object.getPrototypeOf(RichText)).apply(this, arguments)); | ||
} | ||
_createClass(RichText, [{ | ||
key: "render", | ||
value: function render() { | ||
var _this2 = this; | ||
return React__default.createElement( | ||
ThemeContext.Consumer, | ||
null, | ||
function (_ref) { | ||
var resolvedRoles = _ref.resolvedRoles; | ||
var _props = _this2.props, | ||
children = _props.children, | ||
dangerouslySetInnerHTML = _props.dangerouslySetInnerHTML, | ||
otherProps = _objectWithoutProperties(_props, ["children", "dangerouslySetInnerHTML"]); | ||
var className = otherProps.className; | ||
var styles = stylesheet(_this2.props, resolvedRoles); | ||
return children ? React__default.createElement( | ||
"div", | ||
{ className: emotion.cx(emotion.css(styles.richText), className) }, | ||
children | ||
) : React__default.createElement("div", { | ||
className: emotion.cx(emotion.css(styles.richText), className), | ||
dangerouslySetInnerHTML: dangerouslySetInnerHTML // eslint-disable-line react/no-danger | ||
}); | ||
} | ||
); | ||
} | ||
); | ||
}; | ||
}]); | ||
RichText.displayName = "RichText"; | ||
return RichText; | ||
}(React.Component); | ||
@@ -122,0 +147,0 @@ RichText.propTypes = { |
@@ -0,1 +1,13 @@ | ||
# [@hig/rich-text-v1.2.2](https://github.com/Autodesk/hig/compare/@hig/rich-text@1.2.1...@hig/rich-text@1.2.2) (2022-01-12) | ||
### Bug Fixes | ||
* Forcing semantic release by editing readmes ([d39b61f](https://github.com/Autodesk/hig/commit/d39b61f)) | ||
### Reverts | ||
* "Revert "Revert "feat : Migrate all repository to React v17.0 """ ([bf78986](https://github.com/Autodesk/hig/commit/bf78986)) | ||
# [@hig/rich-text-v1.2.1](https://github.com/Autodesk/hig/compare/@hig/rich-text@1.2.0...@hig/rich-text@1.2.1) (2022-01-12) | ||
@@ -2,0 +14,0 @@ |
{ | ||
"name": "@hig/rich-text", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "HIG RichText", | ||
@@ -28,11 +28,11 @@ "author": "Autodesk Inc.", | ||
"@hig/jest-preset": "^0.1.0", | ||
"@hig/progress-bar": "^1.1.2", | ||
"@hig/progress-bar": "^1.1.3", | ||
"@hig/scripts": "^0.1.2", | ||
"@hig/semantic-release-config": "^0.1.0", | ||
"@hig/text-link": "^1.2.1" | ||
"@hig/text-link": "^1.2.2" | ||
}, | ||
"peerDependencies": { | ||
"@hig/theme-context": "^3.0.2", | ||
"@hig/theme-data": "^2.22.0", | ||
"react": "^17.0.0" | ||
"@hig/theme-context": "^3.0.3", | ||
"@hig/theme-data": "^2.22.1", | ||
"react": "^15.4.1 || ^16.3.2" | ||
}, | ||
@@ -39,0 +39,0 @@ "scripts": { |
@@ -7,2 +7,3 @@ # Rich Text | ||
## Getting started | ||
@@ -9,0 +10,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
20550
322
54