Socket
Socket
Sign inDemoInstall

@chakra-ui/react-types

Package Overview
Dependencies
Maintainers
3
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/react-types - npm Package Compare versions

Comparing version 0.0.0-dev-20220820173639 to 0.0.0-dev-20220820185458

2

package.json
{
"name": "@chakra-ui/react-types",
"version": "0.0.0-dev-20220820173639",
"version": "0.0.0-dev-20220820185458",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [

@@ -72,9 +72,14 @@ export interface AriaLabelingProps {

export type PropGetter<P = Record<string, any>, R = DOMAttributes> = (
props?: DOMAttributes & P,
type Merge<M, N> = N extends Record<string, unknown> ? M : Omit<M, keyof N> & N
export type PropGetter<P = Record<string, unknown>, R = DOMAttributes> = (
props?: Merge<DOMAttributes, P>,
ref?: React.Ref<any>,
) => R & React.RefAttributes<any>
export type RequiredPropGetter<P = Record<string, any>, R = DOMAttributes> = (
props: DOMAttributes & P,
export type RequiredPropGetter<
P = Record<string, unknown>,
R = DOMAttributes,
> = (
props: Merge<DOMAttributes, P>,
ref?: React.Ref<any>,

@@ -81,0 +86,0 @@ ) => R & React.RefAttributes<any>

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