Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lendi-ui/alert

Package Overview
Dependencies
Maintainers
26
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lendi-ui/alert - npm Package Compare versions

Comparing version 4.0.2 to 4.1.0

dist/alert.cjs.d.ts

54

CHANGELOG.md
## [4.0.2] - 2019-09-27 - [HUB-590](https://creditandfinance.atlassian.net/browse/HUB-590)
## 4.1.0
### Minor Changes
- 920174c5: preconstruct infra update
### Patch Changes
- Updated dependencies [920174c5]
- @lendi-ui/color@5.1.0
- @lendi-ui/icon@9.7.0
- @lendi-ui/spacing@7.1.0
- @lendi-ui/typography@5.1.0
- @lendi-ui/utils@5.1.0
### Changed
- Fix the bug that icon and content not Centralized when no heading.
## [4.0.1] 2019-09-26 [Release Notes](https://creditandfinance.atlassian.net/wiki/spaces/HUB/pages/803930391/Upcoming+Major+Changes)
- Bumped lendi-ui dependencies to latest versions

@@ -11,11 +29,17 @@

## [3.0.0] 2019-9-23 [Release notes](https://creditandfinance.atlassian.net/wiki/spaces/HUB/pages/803930391/Upcoming+Major+Changes)
### Updated
### Updated
- Update typescript to version 3.5.2 and react to version 16.8.4
## [2.3.0] - 2019-09-11 - [HUB-488-alert](https://creditandfinance.atlassian.net/browse/HUB-488-alert)
### Changed
- Change Alert children type to React.ReactNode instead of string.
- Change Alert children type to React.ReactNode instead of string.
## [2.2.2] - 2019-05-29 - [HUB-144](https://creditandfinance.atlassian.net/browse/HUB-144)
### Changed
- Replaced Warn icon with ErrorOutline icon.

@@ -25,29 +49,45 @@ - Updated icon imports with new names.

## [2.2.1] - 2019-06-4 - [HUB-262](https://creditandfinance.atlassian.net/browse/HUB-262)
### Changed
- Updated utils dependency to get correct types
## [2.2.0] - 2019-05-27 - [HUB-169](https://creditandfinance.atlassian.net/browse/HUB-169)
### Changed
- Support for native props like Aria attributes, Standard HTML Attributes like title, classname, id, role, itemProp, itemID, itemRef
## [2.1.0] - 2019-05-17 - [HUB-174](https://creditandfinance.atlassian.net/browse/HUB-174)
### Changed
- Module format reverted back to CJS.
### Deleted
- Dropped "module" property from package.json.
## [2.0.2] - 2019-05-09 - [HUB-92](https://creditandfinance.atlassian.net/browse/HUB-92)
### Changed
- Updated CHANGELOG to match required parsing format.
## [2.0.3] - 2019-05-08 - [HUB-88](https://creditandfinance.atlassian.net/browse/HUB-88)
### Changed
- replace `border-radius: 6px` with select function in theme
## [2.0.2] - 2019-05-08 - [HUB-54](https://creditandfinance.atlassian.net/browse/HUB-54)
### Changed
- Change module main entry point to esm in package.json
## [2.0.1] - 2019-04-29 - [HUB-94](https://creditandfinance.atlassian.net/browse/HUB-94)
### Added
- Added normalise mixin to outer component.

@@ -57,15 +97,23 @@ - Added utils dependency ^1.2.0.

## [2.0.0] - 2019-04-30 - [HUB-54](https://creditandfinance.atlassian.net/browse/HUB-54)
### Deleted
- Remove the CJS bundles.
## [1.0.3] - 2019-03-05 - [BRAVO-535](https://creditandfinance.atlassian.net/browse/BRAVO-535)
### Changed
- Updated icon dependency from ^4 to ^5.
## [1.0.2] - 2019-02-21 - [BRAVO-513](https://creditandfinance.atlassian.net/browse/BRAVO-513)
### Changed
- Changed transparency of alert background colours from 50 to 25.
## [1.0.1] - 2019-02-08 - [BRAVO-514](https://creditandfinance.atlassian.net/browse/BRAVO-514)
### Changed
- Fixed an issue where the built types would use a relative path to the typography package.

@@ -75,3 +123,5 @@ - Updated CHANGELOG formatting.

## [1.0.0]
### Added
- Build `Alert` component with four types: 'error', 'info', 'success' and 'warn'.

36

package.json
{
"name": "@lendi-ui/alert",
"version": "4.0.2",
"version": "4.1.0",
"license": "ISC",
"source": "src/index.tsx",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"main": "dist/alert.cjs.js",
"module": "dist/alert.esm.js",
"files": ["dist"],
"keywords": [],
"author": "Lendi Devs",
"peerDependencies": {
"@lendi-ui/theme": "^8.0.0",
"@lendi-ui/theme": "^9.1.0",
"@types/react": "^16.8",
"@types/styled-components": "^4.1.18",
"react": "^16.8",
"styled-components": "^4",
"@types/styled-components": "^4.1.18"
"styled-components": "^4"
},
"dependencies": {
"@lendi-ui/utils": "^4.0.0",
"@lendi-ui/color": "^5.0.0",
"@lendi-ui/icon": "^9.0.0",
"@lendi-ui/spacing": "^6.0.0",
"@lendi-ui/typography": "^4.0.0"
"@lendi-ui/color": "^5.1.0",
"@lendi-ui/icon": "^9.7.0",
"@lendi-ui/spacing": "^7.1.0",
"@lendi-ui/typography": "^5.1.0",
"@lendi-ui/utils": "^5.1.0"
},
"scripts": {
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:types": "tsc --project tsconfig.types.json",
"build": "yarn run build:types && yarn run build:cjs"
"devDependencies": {
"@lendi-ui/theme": "*",
"@types/react": "^16.4.8",
"@types/styled-components": "^4.1.18",
"react": "^16.9.0",
"styled-components": "^4"
}
}
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