@hig/text-area
Advanced tools
Comparing version 1.3.2 to 2.0.0
@@ -1,2 +0,2 @@ | ||
import React, { Component } from 'react'; | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
@@ -1621,60 +1621,38 @@ import Input from '@hig/input'; | ||
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; } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
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; } | ||
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 variantTypes = ["line", "box"]; | ||
var TextArea = function (_Component) { | ||
_inherits(TextArea, _Component); | ||
var TextArea = function TextArea(props) { | ||
var variant = props.variant, | ||
stylesheet = props.stylesheet, | ||
textAreaRef = props.textAreaRef, | ||
otherProps = _objectWithoutProperties(props, ["variant", "stylesheet", "textAreaRef"]); | ||
function TextArea() { | ||
_classCallCheck(this, TextArea); | ||
var className = otherProps.className; | ||
return _possibleConstructorReturn(this, (TextArea.__proto__ || Object.getPrototypeOf(TextArea)).apply(this, arguments)); | ||
} | ||
var textareaClassName = className && className.split(" ").reduce(function (acc, cur) { | ||
return cx(acc, cur.trim() + "-textarea"); | ||
}, ""); | ||
_createClass(TextArea, [{ | ||
key: "render", | ||
value: function render() { | ||
var _props = this.props, | ||
variant = _props.variant, | ||
stylesheet = _props.stylesheet, | ||
textAreaRef = _props.textAreaRef, | ||
otherProps = _objectWithoutProperties(_props, ["variant", "stylesheet", "textAreaRef"]); | ||
var textareaStylesheet = function textareaStylesheet(styles, themeData) { | ||
var textareaStyles = stylesheetOverride(styles, props, themeData); | ||
return stylesheet ? stylesheet(textareaStyles, props, themeData) : textareaStyles; | ||
}; | ||
var className = otherProps.className; | ||
return React.createElement( | ||
"div", | ||
{ style: { position: "relative" }, className: className }, | ||
React.createElement(Input, _extends$1({}, otherProps, { | ||
className: textareaClassName, | ||
inputRef: textAreaRef, | ||
stylesheet: textareaStylesheet, | ||
tagName: "textarea", | ||
variant: variant | ||
})) | ||
); | ||
}; | ||
var textareaClassName = className && className.split(" ").reduce(function (acc, cur) { | ||
return cx(acc, cur.trim() + "-textarea"); | ||
}, ""); | ||
TextArea.displayName = "TextArea"; | ||
var textareaStylesheet = function textareaStylesheet(styles, props, themeData) { | ||
var textareaStyles = stylesheetOverride(styles, props, themeData); | ||
return stylesheet ? stylesheet(textareaStyles, props, themeData) : textareaStyles; | ||
}; | ||
return React.createElement( | ||
"div", | ||
{ style: { position: "relative" }, className: className }, | ||
React.createElement(Input, _extends$1({}, otherProps, { | ||
className: textareaClassName, | ||
inputRef: textAreaRef, | ||
stylesheet: textareaStylesheet, | ||
tagName: "textarea", | ||
variant: variant | ||
})) | ||
); | ||
} | ||
}]); | ||
return TextArea; | ||
}(Component); | ||
TextArea.propTypes = { | ||
@@ -1707,2 +1685,3 @@ onBlur: PropTypes.func, | ||
}; | ||
TextArea.defaultProps = { | ||
@@ -1709,0 +1688,0 @@ variant: "line" |
@@ -7,4 +7,3 @@ 'use strict'; | ||
var React = require('react'); | ||
var React__default = _interopDefault(React); | ||
var React = _interopDefault(require('react')); | ||
var PropTypes = _interopDefault(require('prop-types')); | ||
@@ -1629,60 +1628,38 @@ var Input = _interopDefault(require('@hig/input')); | ||
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; } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
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; } | ||
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 variantTypes = ["line", "box"]; | ||
var TextArea = function (_Component) { | ||
_inherits(TextArea, _Component); | ||
var TextArea = function TextArea(props) { | ||
var variant = props.variant, | ||
stylesheet = props.stylesheet, | ||
textAreaRef = props.textAreaRef, | ||
otherProps = _objectWithoutProperties(props, ["variant", "stylesheet", "textAreaRef"]); | ||
function TextArea() { | ||
_classCallCheck(this, TextArea); | ||
var className = otherProps.className; | ||
return _possibleConstructorReturn(this, (TextArea.__proto__ || Object.getPrototypeOf(TextArea)).apply(this, arguments)); | ||
} | ||
var textareaClassName = className && className.split(" ").reduce(function (acc, cur) { | ||
return cx(acc, cur.trim() + "-textarea"); | ||
}, ""); | ||
_createClass(TextArea, [{ | ||
key: "render", | ||
value: function render() { | ||
var _props = this.props, | ||
variant = _props.variant, | ||
stylesheet = _props.stylesheet, | ||
textAreaRef = _props.textAreaRef, | ||
otherProps = _objectWithoutProperties(_props, ["variant", "stylesheet", "textAreaRef"]); | ||
var textareaStylesheet = function textareaStylesheet(styles, themeData) { | ||
var textareaStyles = stylesheetOverride(styles, props, themeData); | ||
return stylesheet ? stylesheet(textareaStyles, props, themeData) : textareaStyles; | ||
}; | ||
var className = otherProps.className; | ||
return React.createElement( | ||
"div", | ||
{ style: { position: "relative" }, className: className }, | ||
React.createElement(Input, _extends$1({}, otherProps, { | ||
className: textareaClassName, | ||
inputRef: textAreaRef, | ||
stylesheet: textareaStylesheet, | ||
tagName: "textarea", | ||
variant: variant | ||
})) | ||
); | ||
}; | ||
var textareaClassName = className && className.split(" ").reduce(function (acc, cur) { | ||
return cx(acc, cur.trim() + "-textarea"); | ||
}, ""); | ||
TextArea.displayName = "TextArea"; | ||
var textareaStylesheet = function textareaStylesheet(styles, props, themeData) { | ||
var textareaStyles = stylesheetOverride(styles, props, themeData); | ||
return stylesheet ? stylesheet(textareaStyles, props, themeData) : textareaStyles; | ||
}; | ||
return React__default.createElement( | ||
"div", | ||
{ style: { position: "relative" }, className: className }, | ||
React__default.createElement(Input, _extends$1({}, otherProps, { | ||
className: textareaClassName, | ||
inputRef: textAreaRef, | ||
stylesheet: textareaStylesheet, | ||
tagName: "textarea", | ||
variant: variant | ||
})) | ||
); | ||
} | ||
}]); | ||
return TextArea; | ||
}(React.Component); | ||
TextArea.propTypes = { | ||
@@ -1715,2 +1692,3 @@ onBlur: PropTypes.func, | ||
}; | ||
TextArea.defaultProps = { | ||
@@ -1717,0 +1695,0 @@ variant: "line" |
@@ -0,1 +1,13 @@ | ||
# [@hig/text-area-v2.0.0](https://github.com/Autodesk/hig/compare/@hig/text-area@1.3.2...@hig/text-area@2.0.0) (2022-01-13) | ||
### Code Refactoring | ||
* Major Release - React 17 Upgrade ([2523711](https://github.com/Autodesk/hig/commit/2523711)) | ||
### BREAKING CHANGES | ||
* This release includes upgrading to React 17 and all associated libraries. The components have also had structural changes, utilizing stateless components and hooks. There should be no change in look or behavior of components. The code usage is the same so if you’re already on react 17 you can bump the version directly. If you’re on an old version of react you’ll need to upgrade your project’s react first to 17 and then the HIG components. This upgrade also means no more fixes for the react 15 version but it will still be available for download from NPM. You can fork the repo and make fixes with the older version if there is something critical past this release date. | ||
# [@hig/text-area-v1.3.2](https://github.com/Autodesk/hig/compare/@hig/text-area@1.3.1...@hig/text-area@1.3.2) (2022-01-12) | ||
@@ -2,0 +14,0 @@ |
{ | ||
"name": "@hig/text-area", | ||
"version": "1.3.2", | ||
"version": "2.0.0", | ||
"description": "HIG Text Area", | ||
@@ -26,3 +26,3 @@ "author": "Autodesk Inc.", | ||
"@hig/theme-data": "^2.22.1", | ||
"react": "^15.4.1 || ^16.3.2" | ||
"react": "^17.0.0" | ||
}, | ||
@@ -29,0 +29,0 @@ "devDependencies": { |
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
107101
2899