Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@clayui/button

Package Overview
Dependencies
Maintainers
13
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clayui/button - npm Package Compare versions

Comparing version
3.157.0
to
3.158.0
+15
-5
package.json

@@ -6,4 +6,4 @@ {

"dependencies": {
"@clayui/icon": "^3.157.0",
"@clayui/loading-indicator": "^3.157.0",
"@clayui/icon": "^3.158.0",
"@clayui/loading-indicator": "^3.158.0",
"classnames": "2.3.1",

@@ -21,6 +21,6 @@ "warning": "^4.0.3"

"license": "BSD-3-Clause",
"main": "src/index.tsx",
"main": "lib/cjs/index.js",
"name": "@clayui/button",
"peerDependencies": {
"@clayui/css": "^3.157.0",
"@clayui/css": "^3.158.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",

@@ -37,3 +37,13 @@ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"

},
"version": "3.157.0"
"version": "3.158.0",
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"types": "lib/index.d.ts",
"ts:main": "src/index.tsx"
}
/**
* SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
import Button, {IProps} from './Button';
import ClayButtonWithIcon, {Props} from './ButtonWithIcon';
export type {Props as ButtonWithIconProps, IProps as ButtonProps};
export {ClayButtonWithIcon};
export default Button;