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

@codebakery/origami

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codebakery/origami - npm Package Versions

1345

3.0.0-beta.4

Diff

asyncliz
published 3.0.0-beta.3 •

asyncliz
published 3.0.0-beta.2 •

asyncliz
published 3.0.0-beta.1 •

asyncliz
published 3.0.0-beta.0 •

hotforfeature
published 2.0.4 •

Changelog

Source

2.0.4 (2018-07-18)

Bug Fixes

  • patch: update patch-cli for Angular CLI 6.x (42c13d6)
  • support Angular 6 cli (649290c)

<a name="2.0.3"></a>

hotforfeature
published 2.0.3 •

Changelog

Source

2.0.3 (2018-05-18)

Bug Fixes

  • style: ensure CSS mixins end with semicolon (d5c488b)

<a name="2.0.2"></a>

hotforfeature
published 2.0.2 •

Changelog

Source

2.0.2 (2018-03-12)

Bug Fixes

  • patch: include project root, app root, and .bowerrc directories for bower components #75 (f59d62f)

<a name="2.0.1"></a>

hotforfeature
published 2.0.1 •

Changelog

Source

2.0.1 (2018-03-12)

Re-publish package with updated readme, no code changes.

<a name="2.0.0"></a>

hotforfeature
published 2.0.0 •

Changelog

Source

2.0.0 (2018-03-09)

Origami v2 brings a lot of exciting changes! The library features a new build system architecture using polymer-webpack-loader. It patches the Angular CLI to inject this loader using the patch-cli.js script.

Check out the README.md for more details on the new and improved build process.

Code Refactoring

  • util: remove getter functions for Polymer/ShadyCSS/customElements (c479759)

BREAKING CHANGES

  • The emitChanges directive has been removed. It was slow and not all that useful for two-way binding. It's much better to either use ironControl and [(ngModel)] or manually hook into the (property-changed) event.

Before

<paper-checkbox [(checked)]="isChecked" emitChanges></paper-checkbox>

After

<paper-checkbox
  [checked]="isChecked"
  (checked-changed)="isChecked = $event.detail.value"
></paper-checkbox>
<!-- or -->
<paper-checkbox [(ngModel)]="isChecked" ironControl></paper-checkbox>
  • Collections have been removed. The ironControl directive will no longer be automatically applied to elements. If you want to use Angular forms ([(ngModel)] or formControlName), you will need to add the ironControl directive manually.

Before

<paper-input [(ngModel)]="value"></paper-input>

After

<paper-input [(ngModel)]="value" ironConrol></paper-input>
  • util: The utility functions to get the Polymer/ShadyCSS/customElements properties have been removed. Instead typings are provided in the repo to access window.Polymer and window.ShadyCSS

<a name="1.3.4"></a>

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