Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

taktik-polymer-typescript

Package Overview
Dependencies
Maintainers
5
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

taktik-polymer-typescript - npm Package Compare versions

Comparing version 2.3.2 to 2.3.3

1

dist/src/index.d.ts

@@ -33,2 +33,3 @@ /**

observer?: string | ((val: any, old: any) => void);
statePath?: string;
}

@@ -35,0 +36,0 @@ /**

@@ -30,2 +30,3 @@ define("taktik-polymer-typeScript", ["require", "exports", "reflect-metadata", "../type/element", "../type/shadow", "../type/polymer", "../type/iron-ajax", "../type/missing"], function (require, exports) {

const observer = (options && options.observer) || "";
const statePath = (options && options.statePath) || undefined;
let type;

@@ -47,3 +48,9 @@ if (options && options.hasOwnProperty("type")) {

}
const finalOpts = { type, notify, reflectToAttribute, readOnly, computed, observer };
let finalOpts;
if (statePath) {
finalOpts = { type, notify, reflectToAttribute, readOnly, computed, observer, statePath };
}
else {
finalOpts = { type, notify, reflectToAttribute, readOnly, computed, observer };
}
proto.constructor.properties[name] = finalOpts;

@@ -50,0 +57,0 @@ }

2

package.json
{
"name": "taktik-polymer-typescript",
"version": "2.3.2",
"version": "2.3.3",
"description": "Module providing development facilities for ozone polymer type script modules.",

@@ -5,0 +5,0 @@ "main": "dist/src/index.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