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

@yamada-ui/utils

Package Overview
Dependencies
Maintainers
1
Versions
545
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yamada-ui/utils - npm Package Compare versions

Comparing version 0.0.0-dev-20231220072135 to 0.0.0-dev-20231224084558

dist/chunk-DDX7V67H.mjs

10

dist/react.d.ts

@@ -47,4 +47,14 @@ import * as React from 'react';

declare const useCallbackRef: <T extends (...args: any[]) => any>(callback: T | undefined, deps?: React.DependencyList) => T;
/**
* `useUpdateEffect` is a custom hook that skips side effects on the initial render, and only runs them when the dependency array changes.
*
* @see Docs https://yamada-ui.com/hooks/use-update-effect
*/
declare const useUpdateEffect: (callback: React.EffectCallback, deps: React.DependencyList) => void;
type FunctionReturningPromise = (...args: any[]) => Promise<any>;
/**
* `useAsync` is a custom hook that executes an asynchronous function and tracks its state.
*
* @see Docs https://yamada-ui.com/hooks/use-async
*/
declare const useAsync: <T extends FunctionReturningPromise>(func: T, deps?: React.DependencyList) => StateFromFunctionReturningPromise<T>;

@@ -51,0 +61,0 @@ type AsyncState<T> = {

3

package.json
{
"name": "@yamada-ui/utils",
"version": "0.0.0-dev-20231220072135",
"version": "0.0.0-dev-20231224084558",
"description": "Yamada UI utils",

@@ -22,2 +22,3 @@ "keywords": [

},
"homepage": "https://yamada-ui.com",
"repository": {

@@ -24,0 +25,0 @@ "type": "git",

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