New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@clayui/form

Package Overview
Dependencies
Maintainers
3
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clayui/form - npm Package Compare versions

Comparing version 3.5.0 to 3.6.0

36

CHANGELOG.md

@@ -6,2 +6,38 @@ # Change Log

# 3.6.0 (2020-02-28)
### Bug Fixes
- bump all components to alpha.1 ([afabdec](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/afabdec))
- ignore case when sorting props ([7c9ae28](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/7c9ae28))
- normalize names of components ([3a0abea](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/3a0abea))
- update components to include 'types' and 'ts:main' package keys ([9e24b59](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/9e24b59))
- **@clayui/form:** add containerRenderer API on InputWithAutocomplete to pass to ClayAutocomplete ([ad1e49c](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/ad1e49c))
- **@clayui/form:** apply requested changes ([076feac](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/076feac))
- **@clayui/form:** fix source formatting issues ([7c39d28](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/7c39d28))
- **@clayui/form:** remove stuck value from Checkbox ([db565b1](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/db565b1))
- **@clayui/form:** use FocusScope component ([e6f13f6](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/e6f13f6))
- **@clayui/shared:** add focus control by left and right arrow keys ([e314419](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/e314419))
- **form:** add margin between icon and feedback message ([50b5a41](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/50b5a41))
- **form:** break multi-select into low-level components ([5c52a5d](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/5c52a5d))
- **form:** remove ClayInputWithAutocomplete and move MultiSelect to its own package ([a91c8e3](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/a91c8e3))
- **muli-select:** inputName should be optional ([7ede309](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/7ede309))
- **multi-select:** allow for event callbacks on input element ([dd3d47e](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/dd3d47e))
### Features
- **@clayui/form:** add missing hidden input element ([4e1c71f](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/4e1c71f))
- add the `<ClayForm.Input />` experimental component ([72e5ddf](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/72e5ddf))
- **@clayui/form:** add `forwardRef` support for `<ClayForm />` ([f5f3e7c](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/f5f3e7c))
- **@clayui/form:** Adds missing size properties on Form and Input component ([753249b](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/753249b))
- **@clayui/form:** adds the Clear All specification in multi-select ([331387c](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/331387c))
- **@clayui/form:** create new toggle component ([8abc13d](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/8abc13d))
- **clay-form:** create high-level InputWithAutocomplete component ([692610a](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/692610a))
- **clay-form:** create high-level multi-select component ([feb3abc](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/feb3abc))
- **clay-form:** export an actual <form> element ([aa71686](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/aa71686))
- update react-testing-library to be @testing-library/react ([bd78145](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/bd78145))
- **form:** add helper components for markup ([3ce63d4](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/3ce63d4))
- **management-toolbar:** add placeholder prop for search input ([9056774](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/9056774))
- **select:** add optgroups for select ([5ee50b2](https://github.com/liferay/clay/tree/master/packages/clay-form/commit/5ee50b2))
# [3.5.0](https://github.com/liferay/clay/tree/master/packages/clay-form/compare/@clayui/form@3.4.0...@clayui/form@3.5.0) (2020-02-13)

@@ -8,0 +44,0 @@

3

lib/index.js

@@ -69,4 +69,3 @@ "use strict";

/**
* © 2019 Liferay, Inc. <https://liferay.com>
*
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause

@@ -73,0 +72,0 @@ */

@@ -16,4 +16,6 @@ "use strict";

function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }

@@ -20,0 +22,0 @@

{
"name": "@clayui/form",
"version": "3.5.0",
"version": "3.6.0",
"description": "ClayForm component",

@@ -29,3 +29,3 @@ "license": "BSD-3-Clause",

"dependencies": {
"@clayui/icon": "^3.0.3",
"@clayui/icon": "^3.0.4",
"classnames": "^2.2.6"

@@ -41,3 +41,3 @@ },

],
"gitHead": "71e9849424d0ec57d28d586eccc18d85cca1ba0a"
"gitHead": "3fc84c9320fa652a452b7c2881a35fdc9f4cc17c"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc