Socket
Socket
Sign inDemoInstall

alphaa-components

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alphaa-components - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

2

lib/components/Input/Input.d.ts

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

placeholder?: string;
value?: string;
value?: string | number;
}
export declare const Input: React.FC<InputProps>;

@@ -18,6 +18,6 @@ "use strict";

const Input = (_a) => {
var { size = 'medium', label, placeholder, value } = _a, props = __rest(_a, ["size", "label", "placeholder", "value"]);
return (React.createElement("input", Object.assign({ type: "text", className: ['form', `form-${size}`].join(' ') }, props)));
var { size = 'medium', label, placeholder = 'Name', value = '' } = _a, props = __rest(_a, ["size", "label", "placeholder", "value"]);
return (React.createElement("input", Object.assign({ type: "text", className: ['form', `form-${size}`].join(' '), placeholder: placeholder, value: value }, props)));
};
exports.Input = Input;
//# sourceMappingURL=Input.js.map
{
"name": "alphaa-components",
"version": "0.2.2",
"version": "0.2.3",
"private": false,

@@ -5,0 +5,0 @@ "description": "",

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