Socket
Socket
Sign inDemoInstall

cvax

Package Overview
Dependencies
4
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.4 to 0.5.5

6

dist/types.d.ts

@@ -16,4 +16,4 @@ export type ClassValue = ClassValue[] | ClassDictionary | string | number | null | boolean | undefined;

export type StringToBoolean<T> = T extends "true" | "false" ? boolean : T;
export type Prettify<T> = {
[K in keyof T]: T[K] extends object ? Prettify<T[K]> : T[K];
} & {};
export type Prettify<T> = T extends object ? {
[K in keyof T]: Prettify<T[K]>;
} : T;
{
"name": "cvax",
"version": "0.5.4",
"version": "0.5.5",
"description": "Customized CVA. fork 'class-variance-authority'",

@@ -17,4 +17,4 @@ "repository": "https://github.com/alexvyber/cvax.git",

"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"

@@ -43,2 +43,3 @@ },

"@types/lodash.isequal": "^4.5.6",
"@vitest/ui": "^0.32.0",
"bundlesize": "^0.18.1",

@@ -45,0 +46,0 @@ "npm-run-all": "4.1.5",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc