Skip to content
This repository has been archived by the owner on Jan 22, 2018. It is now read-only.

Commit

Permalink
release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela committed Dec 17, 2015
1 parent bdfff4b commit e1057cb
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Change Log

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

[Unreleased](https://github.com/formly-js/angular-formly-templates-material/compare/v0.8.0...HEAD)
[0.9.0](https://github.com/formly-js/angular-formly-templates-material/compare/v0.8.0...v0.9.0)

### Added

Expand Down
10 changes: 7 additions & 3 deletions dist/formly-material.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* angular-formly-material JavaScript Library v0.8.0
* angular-formly-material JavaScript Library v0.9.0
*
* @license MIT (http://license.angular-formly.com)
*
Expand Down Expand Up @@ -596,7 +596,9 @@ return /******/ (function(modules) { // webpackBootstrap
wrapper: ['label', 'messages', 'inputContainer'],
defaultOptions: {
ngModelAttrs: {
multiple: { bound: 'multiple' }
multiple: { bound: 'multiple' },
onClose: { bound: 'md-on-close' },
onOpen: { bound: 'md-on-open' }
}
},
apiCheck: function apiCheck(check) {
Expand All @@ -605,7 +607,9 @@ return /******/ (function(modules) { // webpackBootstrap
options: check.arrayOf(check.object),
multiple: check.bool.optional,
labelProp: check.string.optional,
valueProp: check.string.optional
valueProp: check.string.optional,
onClose: check.func.optional,
onOpen: check.func.optional
}
};
}
Expand Down
4 changes: 2 additions & 2 deletions dist/formly-material.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/formly-material.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Package.describe({
name: 'formly:angular-formly-templates-material',
summary: '(official): Material design templates for angular-formly',
version: '0.8.0',
version: '0.9.0',
documentation: 'README.md',
git: 'https://github.com/formly-js/angular-formly-templates-material.git'
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-formly-material",
"version": "0.8.0",
"version": "0.9.0",
"description": "Material design templates for angular-formly",
"main": "dist/formly-material.js",
"scripts": {
Expand Down

0 comments on commit e1057cb

Please sign in to comment.