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

fuzzy-ui

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fuzzy-ui - npm Package Compare versions

Comparing version 0.0.22 to 0.0.23

2

package.json
{
"name": "fuzzy-ui",
"version": "0.0.22",
"version": "0.0.23",
"main": "src/index.ts",

@@ -5,0 +5,0 @@ "scripts": {

@@ -29,3 +29,3 @@ /* eslint-disable no-unused-vars */

component: T,
props?: Record<string, unknown> | null,
props?: Record<string, unknown> | null | (() => Record<string, unknown> | null),
children?: VNodeChild | Slot | Slots

@@ -60,3 +60,3 @@ ) => {

const sideRoot = h({
render: () => h(component as any, props, children as any),
render: () => h(component as any, typeof props === 'function' ? props() : props, children as any),
})

@@ -63,0 +63,0 @@

@@ -36,3 +36,3 @@ import { defineConfig } from 'vite'

// // fileName: (format) => `my-lib.${format}.js`
// formats: ['es'],
// formats: ['umd'],
// },

@@ -51,2 +51,3 @@ // rollupOptions: {

// },
// name: 'FuzzyUI',
// // preserveModules: true,

@@ -56,5 +57,5 @@ // // entryFileNames: ({ name: fileName }) => {

// // },
// preserveModules: true,
// // preserveModules: true,
// entryFileNames: '[name].js',
// format: 'es',
// format: 'umd',
// },

@@ -61,0 +62,0 @@ // },

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