New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jb-input

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jb-input - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

4

dist/JBInput.d.ts

@@ -15,4 +15,4 @@ import './inbox-element/inbox-element';

set value(value: string);
get validationList(): never[];
set validationList(value: never[]);
get validationList(): JBInputValidationItem[];
set validationList(value: JBInputValidationItem[]);
constructor();

@@ -19,0 +19,0 @@ connectedCallback(): void;

@@ -10,3 +10,3 @@ import HTML from './JBInput.html';

elements?: ElementsObject;
#validationList = [];
#validationList:JBInputValidationItem[] = [];
#disabled = false;

@@ -31,6 +31,6 @@ internals_?: ElementInternals;

}
get validationList() {
get validationList():JBInputValidationItem[] {
return this.#validationList;
}
set validationList(value) {
set validationList(value:JBInputValidationItem[]) {
this.#validationList = value;

@@ -37,0 +37,0 @@ this.triggerInputValidation(false);

@@ -17,3 +17,3 @@ {

],
"version": "2.0.1",
"version": "2.0.2",
"bugs": "https://github.com/javadbat/jb-input/issues",

@@ -20,0 +20,0 @@ "license": "MIT",

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