-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd5db4e
commit 9a9642d
Showing
42 changed files
with
1,280 additions
and
944 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,47 @@ | ||
{ | ||
"name": "@clayui/alert", | ||
"version": "3.111.0", | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
], | ||
"dependencies": { | ||
"@clayui/icon": "^3.111.0", | ||
"@clayui/layout": "^3.111.0", | ||
"classnames": "^2.2.6" | ||
}, | ||
"description": "ClayAlert component", | ||
"license": "BSD-3-Clause", | ||
"repository": "https://github.com/liferay/clay", | ||
"engines": { | ||
"node": ">=0.12.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"ts:main": "src/index.tsx", | ||
"exports": { | ||
".": { | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"keywords": [ | ||
"clay", | ||
"react" | ||
], | ||
"dependencies": { | ||
"@clayui/icon": "^3.111.0", | ||
"@clayui/layout": "^3.111.0", | ||
"classnames": "^2.2.6" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"name": "@clayui/alert", | ||
"peerDependencies": { | ||
"@clayui/css": "3.x", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0" | ||
}, | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
] | ||
} | ||
"repository": "https://github.com/liferay/clay", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"ts:main": "src/index.tsx", | ||
"type": "module", | ||
"types": "./lib/index.d.ts", | ||
"version": "3.111.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,51 @@ | ||
{ | ||
"name": "@clayui/autocomplete", | ||
"version": "3.124.0", | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
], | ||
"dependencies": { | ||
"@clayui/core": "^3.124.0", | ||
"@clayui/drop-down": "^3.124.0", | ||
"@clayui/form": "^3.122.0", | ||
"@clayui/loading-indicator": "^3.111.0", | ||
"@clayui/shared": "^3.119.0", | ||
"classnames": "^2.2.6", | ||
"fuzzy": "^0.1.3" | ||
}, | ||
"description": "ClayAutocomplete component", | ||
"license": "BSD-3-Clause", | ||
"repository": "https://github.com/liferay/clay", | ||
"engines": { | ||
"node": ">=0.12.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"ts:main": "src/index.tsx", | ||
"exports": { | ||
".": { | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"keywords": [ | ||
"clay", | ||
"react" | ||
], | ||
"dependencies": { | ||
"@clayui/core": "^3.124.0", | ||
"@clayui/drop-down": "^3.124.0", | ||
"@clayui/form": "^3.122.0", | ||
"@clayui/loading-indicator": "^3.111.0", | ||
"@clayui/shared": "^3.119.0", | ||
"classnames": "^2.2.6", | ||
"fuzzy": "^0.1.3" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"name": "@clayui/autocomplete", | ||
"peerDependencies": { | ||
"@clayui/css": "3.x", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0" | ||
}, | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
] | ||
} | ||
"repository": "https://github.com/liferay/clay", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"ts:main": "src/index.tsx", | ||
"type": "module", | ||
"types": "./lib/index.d.ts", | ||
"version": "3.124.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,45 @@ | ||
{ | ||
"name": "@clayui/badge", | ||
"version": "3.111.0", | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
], | ||
"dependencies": { | ||
"classnames": "^2.2.6" | ||
}, | ||
"description": "ClayBadge component", | ||
"license": "BSD-3-Clause", | ||
"repository": "https://github.com/liferay/clay", | ||
"engines": { | ||
"node": ">=0.12.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"ts:main": "src/index.tsx", | ||
"exports": { | ||
".": { | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"keywords": [ | ||
"clay", | ||
"react" | ||
], | ||
"dependencies": { | ||
"classnames": "^2.2.6" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"name": "@clayui/badge", | ||
"peerDependencies": { | ||
"@clayui/css": "3.x", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0" | ||
}, | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
] | ||
} | ||
"repository": "https://github.com/liferay/clay", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"ts:main": "src/index.tsx", | ||
"type": "module", | ||
"types": "./lib/index.d.ts", | ||
"version": "3.111.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,49 @@ | ||
{ | ||
"name": "@clayui/breadcrumb", | ||
"version": "3.116.0", | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
], | ||
"dependencies": { | ||
"@clayui/button": "^3.116.0", | ||
"@clayui/icon": "^3.111.0", | ||
"@clayui/link": "^3.111.0", | ||
"classnames": "^2.2.6", | ||
"warning": "^4.0.3" | ||
}, | ||
"description": "ClayBreadcrumb component", | ||
"license": "BSD-3-Clause", | ||
"repository": "https://github.com/liferay/clay", | ||
"engines": { | ||
"node": ">=0.12.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"ts:main": "src/index.tsx", | ||
"exports": { | ||
".": { | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"keywords": [ | ||
"clay", | ||
"react" | ||
], | ||
"dependencies": { | ||
"@clayui/button": "^3.116.0", | ||
"@clayui/icon": "^3.111.0", | ||
"@clayui/link": "^3.111.0", | ||
"classnames": "^2.2.6", | ||
"warning": "^4.0.3" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"name": "@clayui/breadcrumb", | ||
"peerDependencies": { | ||
"@clayui/css": "3.x", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0" | ||
}, | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
] | ||
} | ||
"repository": "https://github.com/liferay/clay", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "cross-env NODE_ENV=production tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"ts:main": "src/index.tsx", | ||
"type": "module", | ||
"types": "./lib/index.d.ts", | ||
"version": "3.116.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,47 @@ | ||
{ | ||
"name": "@clayui/button", | ||
"version": "3.116.0", | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
], | ||
"dependencies": { | ||
"@clayui/icon": "^3.111.0", | ||
"classnames": "^2.2.6", | ||
"warning": "^4.0.3" | ||
}, | ||
"description": "ClayButton component", | ||
"license": "BSD-3-Clause", | ||
"repository": "https://github.com/liferay/clay", | ||
"engines": { | ||
"node": ">=0.12.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"ts:main": "src/index.tsx", | ||
"exports": { | ||
".": { | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"keywords": [ | ||
"clay", | ||
"react" | ||
], | ||
"dependencies": { | ||
"@clayui/icon": "^3.111.0", | ||
"classnames": "^2.2.6", | ||
"warning": "^4.0.3" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"name": "@clayui/button", | ||
"peerDependencies": { | ||
"@clayui/css": "3.x", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0" | ||
}, | ||
"browserslist": [ | ||
"extends browserslist-config-clay" | ||
] | ||
} | ||
"repository": "https://github.com/liferay/clay", | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production node ../../scripts/build.js", | ||
"buildTypes": "tsc --project ./tsconfig.declarations.json", | ||
"test": "jest --config ../../jest.config.js" | ||
}, | ||
"ts:main": "src/index.tsx", | ||
"type": "module", | ||
"types": "./lib/index.d.ts", | ||
"version": "3.116.0" | ||
} |
Oops, something went wrong.