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

ember-mobile-inputs

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-mobile-inputs - npm Package Compare versions

Comparing version 3.3.4 to 3.3.5

14

addon/components/mi-number.js

@@ -168,3 +168,3 @@ import layout from "../templates/components/mi-number";

if (isNaN(value) && isPresent(min)){
if (isNaN(value) && isPresent(min)) {
return min;

@@ -192,8 +192,10 @@ }

mobileInputVisibleChangedFn(value) {
this.set('mobileInputVisible', value);
},
didInsertElement: function() {
this._super(...arguments);
this.get('mobileInputEventBus').subscribe('mobileInputVisibleChanged', (value) => {
this.set('mobileInputVisible', value);
});
this.get('mobileInputEventBus').subscribe('mobileInputVisibleChanged', this.mobileInputVisibleChangedFn);

@@ -213,5 +215,5 @@ if (!isTouchDevice()) {

willDestroyElement(){
willDestroyElement() {
this._super(...arguments);
this.get('mobileInputEventBus').unsubscribe('mobileInputVisibleChanged');
this.get('mobileInputEventBus').unsubscribe('mobileInputVisibleChanged', this.mobileInputVisibleChangedFn);
},

@@ -218,0 +220,0 @@

@@ -11,5 +11,8 @@ import Service from '@ember/service';

},
unsubscribe: function () {
unsubscribe: function (eventName) {
if (!this.has(eventName)){
return;
}
return this.off.apply(this, arguments);
}
});
{
"name": "ember-mobile-inputs",
"version": "3.3.4",
"version": "3.3.5",
"description": "Mobile- and Desktop- friendly inputs",

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

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