Socket
Socket
Sign inDemoInstall

@mpen/react-basic-inputs

Package Overview
Dependencies
Maintainers
0
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mpen/react-basic-inputs - npm Package Compare versions

Comparing version 0.2.8 to 0.2.9

2

dist/react-basic-inputs.d.ts

@@ -22,3 +22,3 @@ import { ComponentPropsWithoutRef } from 'react';

max?: number | string | Date;
value?: number | string | Date;
value?: number | string | Date | null;
defaultValue?: number | string | Date;

@@ -25,0 +25,0 @@ }, 'type'>;

@@ -267,3 +267,3 @@ var V = Object.defineProperty;

function me({ value: e, defaultValue: t, min: n, max: u, ...r }) {
return e != null && (r.value = I(e)), t != null && (r.defaultValue = I(t)), n != null && (r.min = I(n)), u != null && (r.max = I(u)), /* @__PURE__ */ x("input", { type: "datetime-local", ...r });
return e !== void 0 && (r.value = e === null ? "" : I(e)), t != null && (r.defaultValue = I(t)), n != null && (r.min = I(n)), u != null && (r.max = I(u)), /* @__PURE__ */ x("input", { type: "datetime-local", ...r });
}

@@ -270,0 +270,0 @@ export {

{
"name": "@mpen/react-basic-inputs",
"private": false,
"version": "0.2.8",
"version": "0.2.9",
"type": "module",

@@ -6,0 +6,0 @@ "files": ["dist"],

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