Socket
Socket
Sign inDemoInstall

@chakra-ui/utils

Package Overview
Dependencies
Maintainers
4
Versions
278
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/utils - npm Package Compare versions

Comparing version 1.8.4 to 1.9.0

dist/chakra-ui-utils.cjs.d.ts

34

CHANGELOG.md
# Change Log
## 1.9.0
### Minor Changes
- [#4991](https://github.com/chakra-ui/chakra-ui/pull/4991)
[`6095eaf9a`](https://github.com/chakra-ui/chakra-ui/commit/6095eaf9ac64a7e4d9f934bcb530bae2a92111a6)
Thanks [@segunadebayo](https://github.com/segunadebayo)! - Update build system
we use from a custom babel cli setup to
[preconstruct](https://preconstruct.tools/).
The previous build system transpiles the code in `src` directory to `dist/esm`
and `dist/cjs` keeping the same file structure. The new build system merges
all files in `src` and transpiles to a single `esm` and `cjs` file.
**Potential Breaking Change:** The side effect of this is that, if you
imported any function, component or hook using the **undocumented** approach
like
`import { useOutsideClick } from "@chakra-ui/hooks/dist/use-outside-click"`,
you'll notice that the this doesn't work anymore.
Here's how to resolve it:
```jsx live=false
// Won't work 🎇
import { useOutsideClick } from "@chakra-ui/hooks/dist/use-outside-click"
// Works ✅
import { useOutsideClick } from "@chakra-ui/hooks"
```
If this affected your project, we recommend that you import hooks, functions
or components the way it's shown in the documentation. This will help keep
your project future-proof.
## 1.8.4

@@ -4,0 +38,0 @@

28

package.json
{
"name": "@chakra-ui/utils",
"version": "1.8.4",
"version": "1.9.0",
"description": "Common utilties and types for Chakra UI",

@@ -9,12 +9,5 @@ "author": "Segun Adebayo <sage@adebayosegun.com>",

"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"main": "dist/chakra-ui-utils.cjs.js",
"module": "dist/chakra-ui-utils.esm.js",
"types": "dist/chakra-ui-utils.cjs.d.ts",
"files": [

@@ -31,15 +24,2 @@ "dist"

},
"scripts": {
"prebuild": "rimraf dist",
"start": "nodemon --watch src --exec yarn build -e ts,tsx",
"build:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"build": "concurrently yarn:build:*",
"test": "jest --env=jsdom --passWithNoTests",
"test:cov": "yarn test --coverage",
"lint:src": "eslint src --fix --ext .ts,.tsx --config ../../.eslintrc",
"lint:types": "tsc --noEmit",
"lint": "concurrently yarn:lint:*"
},
"bugs": {

@@ -46,0 +26,0 @@ "url": "https://github.com/chakra-ui/chakra-ui/issues"

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