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

Commit 9268ec9

Browse files
author
Kamil Kisiela
committed
Update version
1 parent be2d723 commit 9268ec9

File tree

3 files changed

+37
-4
lines changed

3 files changed

+37
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [Unreleased]
5+
## [0.4.0] - 2015-11-17
66
### Added
7-
- md-chip with placeholder, secondary-placeholder, delete-button-label and delete-hint
7+
- **md-chip** with placeholder, secondary-placeholder, delete-button-label and delete-hint
88

99
### Changed
1010
- **mdLabel** wrapper changed to **label**
@@ -49,7 +49,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4949

5050
## 0.0.1 - 2015-11-06
5151

52-
[Unreleased]: https://github.com/wieldo/meteor-angular-formly-templates-material/compare/v0.3.0...HEAD
52+
[0.4.0]: https://github.com/wieldo/meteor-angular-formly-templates-material/compare/v0.3.0...v0.4.0
5353
[0.3.0]: https://github.com/wieldo/meteor-angular-formly-templates-material/compare/v0.2.0...v0.3.0
5454
[0.2.0]: https://github.com/wieldo/meteor-angular-formly-templates-material/compare/v0.1.0...v0.2.0
5555
[0.1.0]: https://github.com/wieldo/meteor-angular-formly-templates-material/compare/v0.0.4...v0.1.0

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,39 @@ md-filter-date
183183
}
184184
```
185185

186+
### chips
187+
188+
**placeholder (string, optional)**
189+
190+
placeholder attribute value
191+
192+
**secondaryPlaceholder (string, optional)**
193+
194+
secondary-placeholder attribute value
195+
196+
**deleteButtonLabel (string, optional)**
197+
198+
delete-button-label attribute value
199+
200+
**deleteHint (string, optional)**
201+
202+
delete-hint attribute value
203+
204+
```javascript
205+
{
206+
"type": "chips",
207+
"key": "tags",
208+
"templateOptions": {
209+
"theme": "custom",
210+
"placeholder": "+tags",
211+
"secondaryPlaceholder": "Add tag",
212+
"deleteButtonLabel": "Remove",
213+
"deleteHint": "Remove tag"
214+
}
215+
}
216+
```
217+
218+
186219
## Wrappers
187220

188221
- mdInputContainer

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var client = 'client';
33
Package.describe({
44
name: "wieldo:angular-formly-templates-material",
55
summary: "Material design templates for angular-formly",
6-
version: "0.3.0",
6+
version: "0.4.0",
77

88
documentation: 'README.md',
99
git: 'https://github.com/wieldo/angular-formly-templates-material.git'

0 commit comments

Comments
 (0)