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

Commit e1057cb

Browse files
author
Kamil Kisiela
committed
release v0.9.0
1 parent bdfff4b commit e1057cb

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Change Log
33

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

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

88
### Added
99

dist/formly-material.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* angular-formly-material JavaScript Library v0.8.0
2+
* angular-formly-material JavaScript Library v0.9.0
33
*
44
* @license MIT (http://license.angular-formly.com)
55
*
@@ -596,7 +596,9 @@ return /******/ (function(modules) { // webpackBootstrap
596596
wrapper: ['label', 'messages', 'inputContainer'],
597597
defaultOptions: {
598598
ngModelAttrs: {
599-
multiple: { bound: 'multiple' }
599+
multiple: { bound: 'multiple' },
600+
onClose: { bound: 'md-on-close' },
601+
onOpen: { bound: 'md-on-open' }
600602
}
601603
},
602604
apiCheck: function apiCheck(check) {
@@ -605,7 +607,9 @@ return /******/ (function(modules) { // webpackBootstrap
605607
options: check.arrayOf(check.object),
606608
multiple: check.bool.optional,
607609
labelProp: check.string.optional,
608-
valueProp: check.string.optional
610+
valueProp: check.string.optional,
611+
onClose: check.func.optional,
612+
onOpen: check.func.optional
609613
}
610614
};
611615
}

dist/formly-material.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formly-material.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Package.describe({
55
name: 'formly:angular-formly-templates-material',
66
summary: '(official): Material design templates for angular-formly',
7-
version: '0.8.0',
7+
version: '0.9.0',
88
documentation: 'README.md',
99
git: 'https://github.com/formly-js/angular-formly-templates-material.git'
1010
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly-material",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Material design templates for angular-formly",
55
"main": "dist/formly-material.js",
66
"scripts": {

0 commit comments

Comments
 (0)