Socket
Socket
Sign inDemoInstall

matte

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

matte - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json
{
"name": "matte",
"version": "0.1.2",
"version": "0.1.3",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

@@ -12,2 +12,17 @@ /**

exports.List = Component.specialize(/** @lends module:"matte/ui/list.reel".List# */ {
constructor: {
value: function List () {
this.super();
this.defineBinding("_repetition.content", {"<-": "content"});
// Only use a contentController if content is not defined
this.defineBinding("content.defined() ? null : _repetition.contentController", {
"<-": "contentController"
});
}
},
/**

@@ -29,27 +44,5 @@ Description TODO

_content: {value: null},
content: {
set: function(value) {
this._content = value;
this.defineBinding("_repetition.content", {
"<-": "_content"
});
},
get: function() {
return this._content;
}
},
content: {value: null},
_contentController: {value: null},
contentController: {
set: function(value) {
this._contentController = value;
this.defineBinding("_repetition.contentController", {
"<-": "_contentController"
});
},
get: function() {
return this._contentController;
}
},
contentController: {value: null},

@@ -56,0 +49,0 @@ axis: {

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