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

Commit efadd07

Browse files
author
Kamil Kisiela
committed
chore: change package name
move package to formly organisation
1 parent 13fcd9a commit efadd07

File tree

3 files changed

+90
-94
lines changed

3 files changed

+90
-94
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ 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/wieldo/angular-formly-templates-material/compare/v0.7.2...HEAD)
7+
8+
### Changed
9+
10+
- Package name in AtmosphereJS (formly:angular-formly-templates-material)
11+
612
[0.7.2](https://github.com/wieldo/angular-formly-templates-material/compare/v0.7.1...v0.7.2) - 2015-12-08
713
---------------------------------------------------------------------------------------------------------
814

README.md

Lines changed: 50 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
FormlyMaterial
2-
==========
2+
==============
33

4-
[![GitHub version](https://badge.fury.io/gh/formly-js%2Fangular-formly-templates-material.svg)](https://badge.fury.io/gh/formly-js%2Fangular-formly-templates-material)
5-
[![Build Status](https://travis-ci.org/formly-js/angular-formly-templates-material.svg)](https://travis-ci.org/formly-js/angular-formly-templates-material)
6-
[![Coverage Status](https://coveralls.io/repos/formly-js/angular-formly-templates-material/badge.svg?branch=master&service=github)](https://coveralls.io/github/formly-js/angular-formly-templates-material?branch=master)
7-
[![Codacy Badge](https://api.codacy.com/project/badge/grade/a2cd4c7c2d74467281e309a65be49e8f)](https://www.codacy.com/app/mys-sterowiec/angular-formly-templates-material)
4+
[![GitHub version](https://badge.fury.io/gh/formly-js%2Fangular-formly-templates-material.svg)](https://badge.fury.io/gh/formly-js%2Fangular-formly-templates-material)[![Build Status](https://travis-ci.org/formly-js/angular-formly-templates-material.svg)](https://travis-ci.org/formly-js/angular-formly-templates-material)[![Coverage Status](https://coveralls.io/repos/formly-js/angular-formly-templates-material/badge.svg?branch=master&service=github)](https://coveralls.io/github/formly-js/angular-formly-templates-material?branch=master)[![Codacy Badge](https://api.codacy.com/project/badge/grade/a2cd4c7c2d74467281e309a65be49e8f)](https://www.codacy.com/app/mys-sterowiec/angular-formly-templates-material)
85

96
Material Design Templates for [Angular-Formly](http://angular-formly.com). Modern & flexible forms configured easily in a JSON object.
107

11-
## Install
8+
Install
9+
-------
1210

1311
```
1412
npm install angular-formly-material
@@ -19,51 +17,56 @@ bower install angular-formly-material
1917
```
2018

2119
```
22-
meteor add wieldo:angular-formly-templates-material
20+
meteor add formly:angular-formly-templates-material
2321
```
2422

23+
Getting Started
24+
---------------
2525

26-
## Getting Started
27-
28-
1. Add package using one of methods above
29-
2. Add the following dependencies to your AngularJS module:
26+
1. Add package using one of methods above
27+
2. Add the following dependencies to your AngularJS module:
3028

3129
```javascript
3230
angular.module('myAppName', [
3331
'formlyMaterial'
3432
])
3533
```
3634

37-
## Requirements
35+
Requirements
36+
------------
3837

39-
- angular ~ 1.4.0
40-
- angular-messages ~ 1.4.0
41-
- angular-material ~ 0.11.0
42-
- angular-formly ~ 7.3.0
38+
- angular ~ 1.4.0
39+
- angular-messages ~ 1.4.0
40+
- angular-material ~ 0.11.0
41+
- angular-formly ~ 7.3.0
4342

44-
# Components
43+
Components
44+
==========
4545

4646
Any requests? Add issue!
4747

48-
## Fields
48+
Fields
49+
------
4950

50-
* [checkbox][types.checkbox]
51-
* [chips][types.chips]
52-
* [datepicker][types.datepicker]
53-
* [input][types.input]
54-
* [radio][types.radio]
55-
* [select][types.select]
56-
* [slider][types.slider]
57-
* [switch][types.switch]
58-
* [textarea][types.textarea]
51+
- [checkbox](docs/types/checkbox.md)
52+
- [chips](docs/types/chips.md)
53+
- [datepicker](docs/types/datepicker.md)
54+
- [input](docs/types/input.md)
55+
- [radio](docs/types/radio.md)
56+
- [select](docs/types/select.md)
57+
- [slider](docs/types/slider.md)
58+
- [switch](docs/types/switch.md)
59+
- [textarea](docs/types/textarea.md)
5960

60-
## Wrappers
61+
Wrappers
62+
--------
6163

62-
* [input-container][wrappers.input-container]
63-
* [label][wrappers.label]
64-
* [messages][wrappers.messages]
64+
- [input-container](docs/wrappers/input-container.md)
65+
- [label](docs/wrappers/label.md)
66+
- [messages](docs/wrappers/messages.md)
6567

66-
## Common settings
68+
Common settings
69+
---------------
6770

6871
### label (string)
6972

@@ -73,33 +76,20 @@ Text used as a field's label
7376

7477
Value of md-theme used on field
7578

76-
## Roadmap
77-
78-
- [x] add md-chips
79-
- [x] add md-datepicker
80-
- [ ] add md-icon wrapper
81-
- [x] add md-slider with min, max, step and discrete options
82-
- [x] add md-select
83-
- [x] multiple in md-select
84-
- [ ] add groups to md-select
85-
- [x] add valueProp, labelProp to md-select
86-
- [x] add md-radio with valueProp and labelProp
87-
- [x] add textarea with cols and rows
88-
- [x] md-theme
89-
- [ ] e2e tests
79+
Roadmap
80+
-------
81+
82+
- [x] add md-chips
83+
- [x] add md-datepicker
84+
- [ ] add md-icon wrapper
85+
- [x] add md-slider with min, max, step and discrete options
86+
- [x] add md-select
87+
- [x] multiple in md-select
88+
- [ ] add groups to md-select
89+
- [x] add valueProp, labelProp to md-select
90+
- [x] add md-radio with valueProp and labelProp
91+
- [x] add textarea with cols and rows
92+
- [x] md-theme
93+
- [ ] e2e tests
9094

9195
Requests (?). Post an issue.
92-
93-
[types.checkbox]: docs/types/checkbox.md
94-
[types.chips]: docs/types/chips.md
95-
[types.datepicker]: docs/types/datepicker.md
96-
[types.input]: docs/types/input.md
97-
[types.radio]: docs/types/radio.md
98-
[types.select]: docs/types/select.md
99-
[types.slider]: docs/types/slider.md
100-
[types.switch]: docs/types/switch.md
101-
[types.textarea]: docs/types/textarea.md
102-
103-
[wrappers.input-container]: docs/wrappers/input-container.md
104-
[wrappers.label]: docs/wrappers/label.md
105-
[wrappers.messages]: docs/wrappers/messages.md

package.js

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
var client = 'client';
1+
// package metadata file for AtmosphereJS
2+
'use strict';
23

3-
Package.describe({
4-
name: "wieldo:angular-formly-templates-material",
5-
summary: "Material design templates for angular-formly",
6-
version: "0.7.2",
4+
var packageName = 'formly:angular-formly-templates-material';
5+
var packageJson = JSON.parse(Npm.require("fs").readFileSync('package.json'));
76

8-
documentation: 'README.md',
9-
git: 'https://github.com/formly-js/angular-formly-templates-material.git'
7+
Package.describe({
8+
name: packageName,
9+
summary: '(official): Material design templates for angular-formly',
10+
version: packageJson.version,
11+
documentation: 'README.md',
12+
git: 'https://github.com/formly-js/angular-formly-templates-material.git'
1013
});
1114

1215
Package.onUse(function (api) {
13-
14-
var packages = {
15-
use: [
16-
17-
'angular:[email protected]',
18-
'angular:[email protected]',
19-
20-
],
21-
imply: [
22-
'angular:[email protected]',
23-
'angular:angular-messages',
24-
'angular:angular-material',
25-
'wieldo:angular-formly'
26-
]
27-
};
28-
29-
api.versionsFrom("[email protected]");
30-
31-
api.use(packages.use);
32-
33-
api.imply(packages.imply);
34-
35-
api.addFiles([
36-
'dist/formly-material.js'
37-
], client);
38-
39-
});
16+
var packages = {
17+
use: [
18+
19+
'angular:[email protected]',
20+
'angular:[email protected]',
21+
22+
],
23+
imply: [
24+
'angular:[email protected]',
25+
'angular:angular-messages',
26+
'angular:angular-material',
27+
'wieldo:angular-formly'
28+
]
29+
};
30+
31+
api.versionsFrom(['[email protected]']);
32+
33+
api.use(packages.use);
34+
api.imply(packages.imply);
35+
36+
api.addFiles([
37+
'dist/formly-material.js'
38+
], 'client');
39+
});

0 commit comments

Comments
 (0)