Skip to content

Commit 9e4dc1f

Browse files
committed
Fix problem with @angular/material date picker.
1 parent e88ac0c commit 9e4dc1f

19 files changed

+364
-201
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![npm version](https://img.shields.io/npm/v/angular2-json-schema-form.svg?style=plastic)](https://www.npmjs.com/package/angular2-json-schema-form) [![npm downloads](https://img.shields.io/npm/dm/angular2-json-schema-form.svg?style=plastic)](https://www.npmjs.com/package/angular2-json-schema-form) [![GitHub MIT License](https://img.shields.io/github/license/dschnelldavis/angular2-json-schema-form.svg?style=social)](https://github.com/dschnelldavis/angular2-json-schema-form)
44
[![Dependencies](https://david-dm.org/dschnelldavis/angular2-json-schema-form.svg)](https://david-dm.org/dschnelldavis/angular2-json-schema-form) [![devDependencies](https://david-dm.org/dschnelldavis/angular2-json-schema-form/dev-status.svg)](https://david-dm.org/dschnelldavis/angular2-json-schema-form?type=dev)
55

6-
A [JSON Schema](http://json-schema.org) Form builder for Angular 2 or 4, similar to, and mostly API compatible with,
6+
A [JSON Schema](http://json-schema.org) Form builder for Angular 4, similar to, and mostly API compatible with,
77

88
* [JSON Schema Form](https://github.com/json-schema-form)'s [Angular Schema Form](http://schemaform.io) for [AngularJS](https://angularjs.org) ([examples](http://schemaform.io/examples/bootstrap-example.html))
99
* [Mozilla](https://blog.mozilla.org/services/)'s [React JSON Schema Form](https://github.com/mozilla-services/react-jsonschema-form) for [React](https://facebook.github.io/react/) ([examples](https://mozilla-services.github.io/react-jsonschema-form/)), and

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular2-json-schema-form",
3-
"version": "0.5.0-alpha.1",
3+
"version": "0.5.0-alpha.2",
44
"author": {
55
"name": "David Schnell-Davis",
66
"email": "[email protected]"
@@ -47,7 +47,7 @@
4747
"prebuild": "npm run clean",
4848
"build": "node build.js",
4949
"postbuild": "rimraf out-ngc",
50-
"prepublish": "npm run build",
50+
"prepare": "npm run build",
5151
"publish": "cd dist && npm publish",
5252
"preng-build": "rimraf dist/*",
5353
"ng-build": "ng build",
@@ -69,7 +69,7 @@
6969
"devDependencies": {
7070
"@angular/animations": "^4.4.0-RC.0",
7171
"@angular/cdk": "^2.0.0-beta.10",
72-
"@angular/cli": "^1.0.0",
72+
"@angular/cli": "^1.4.1",
7373
"@angular/common": "^4.4.0-RC.0",
7474
"@angular/compiler": "^4.4.0-RC.0",
7575
"@angular/compiler-cli": "^4.4.0-RC.0",

src/demo/app/demo.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</md-toolbar>
55
<div class="header-content">
66
An Angular <a href="http://json-schema.org/">JSON Schema</a> Form builder
7-
for Angular 2 and above, similar to, and mostly API compatible with,
7+
for Angular 4, similar to, and mostly API compatible with,
88
<span class="avoidwrap">
99
<!-- JSON Schema Form's Angular Schema Form -->
1010
<!-- https://github.com/json-schema-form -->

src/demo/app/example-schemas.model.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
//
33
// Angular JSON Schema Form examples ('ng-jsf-...') are original
44
//
5+
// JSON Meta-Schemas ('json-schema-draft...') are from
6+
// http://json-schema.org/specification-links.html
7+
//
58
// Angular Schema Form (AngularJS) examples ('asf-...') are from
69
// http://schemaform.io/examples/bootstrap-example.html
710
//
811
// React JSON Schema Form examples ('rjsf-...') are from
912
// https://mozilla-services.github.io/react-jsonschema-form/
1013
//
11-
// JSONForm examples ('jsf-...') are from
14+
// JSONForm (jQuery) examples ('jsf-...') are from
1215
// http://ulion.github.io/jsonform/playground/
1316
//
1417
//
@@ -19,11 +22,12 @@ export const Examples: any = {
1922
schemas: [
2023
{ name: 'Flexbox layout', file: 'ng-jsf-flex-layout', },
2124
{ name: 'Simple Array', file: 'ng-jsf-simple-array', },
25+
{ name: 'Deep References', file: 'ng-jsf-deep-ref', },
2226
{ name: 'Data Only (no Schema or Layout)', file: 'ng-jsf-data-only', },
2327
// { name: 'Layout Only (no Schema or Data)', file: 'ng-jsf-layout-only', },
24-
// { name: 'JSON Meta-Schema - Version 6', file: 'ng-jsf-json-schema-draft06', },
25-
{ name: 'JSON Meta-Schema - Version 4', file: 'ng-jsf-json-schema-draft04', },
26-
{ name: 'JSON Meta-Schema - Version 3', file: 'ng-jsf-json-schema-draft03', },
28+
// { name: 'JSON Meta-Schema - Version 6', file: 'json-schema-draft06', },
29+
{ name: 'JSON Meta-Schema - Version 4', file: 'json-schema-draft04', },
30+
{ name: 'JSON Meta-Schema - Version 3', file: 'json-schema-draft03', },
2731
]
2832
},
2933
'asf': {

0 commit comments

Comments
 (0)