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

@coders-tm/vue-number-format

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coders-tm/vue-number-format - npm Package Compare versions

Comparing version 3.0.4 to 3.0.5

14

dist/index.cjs.js

@@ -198,2 +198,14 @@ /**

/**
* Creates a CustomEvent('blur') with detail = { facade: true }
* used as a way to identify our own blur event
*/
function FacadeBlurEvent() {
return new CustomEvent('blur', {
bubbles: true,
cancelable: true,
detail: { facade: true },
})
}
/**
* ensure that the element we're attaching to is an input element

@@ -331,3 +343,3 @@ * if not try to find an input element in this elements childrens

if (oldValue !== target.value) {
target.dispatchEvent(FacadeInputEvent());
target.dispatchEvent(FacadeBlurEvent());
}

@@ -334,0 +346,0 @@ }

@@ -194,2 +194,14 @@ /**

/**
* Creates a CustomEvent('blur') with detail = { facade: true }
* used as a way to identify our own blur event
*/
function FacadeBlurEvent() {
return new CustomEvent('blur', {
bubbles: true,
cancelable: true,
detail: { facade: true },
})
}
/**
* ensure that the element we're attaching to is an input element

@@ -327,3 +339,3 @@ * if not try to find an input element in this elements childrens

if (oldValue !== target.value) {
target.dispatchEvent(FacadeInputEvent());
target.dispatchEvent(FacadeBlurEvent());
}

@@ -330,0 +342,0 @@ }

2

package.json
{
"name": "@coders-tm/vue-number-format",
"version": "3.0.4",
"version": "3.0.5",
"private": false,

@@ -5,0 +5,0 @@ "description": "Easy formatted numbers, currency and percentage with input/directive mask for Vue.js",

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