Skip to content

Commit 95ee3a0

Browse files
committed
chore(build) Increment release number and build
1 parent a684d2c commit 95ee3a0

8 files changed

+20
-28
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "forms-angular",
33
"author": "Mark Chapman <support@forms-angular.org>",
4-
"version": "0.4.1",
4+
"version": "0.5.0",
55
"homepage": "https://github.com/forms-angular/forms-angular",
66
"description": "No nonsense forms for the MEAN stack",
77
"keywords": [
@@ -21,7 +21,7 @@
2121
"angular": "~1.3",
2222
"angular-sanitize": "~1.3",
2323
"angular-messages": "~1.3",
24-
"angular-ui-bootstrap-bower": ">=0.8.0",
24+
"angular-ui-bootstrap-bower": "^0.8 || ^0.13",
2525
"underscore": "1.8.2",
2626
"ngInfiniteScroll": "^1.2",
2727
"angular-elastic": "~2"

dist/forms-angular-with-bs2.css

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/forms-angular-with-bs3.css

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

dist/forms-angular.d.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ declare module fng {
2424
decorateScope($scope: fng.IFormScope, $modal: any, recordHandlerInstance: fng.IRecordHandler, ctrlState: any): any;
2525
fillFormFromBackendCustomSchema(schema: any, $scope: fng.IFormScope, formGeneratorInstance: any, recordHandlerInstance: any, ctrlState: any): any;
2626
fillFormWithBackendSchema($scope: fng.IFormScope, formGeneratorInstance: any, recordHandlerInstance: any, ctrlState: any): any;
27+
handleError($scope: fng.IFormScope): any;
2728
}
2829
interface IFormGenerator {
2930
generateEditUrl(obj: any, $scope: fng.IFormScope): string;
@@ -117,7 +118,9 @@ declare module fng {
117118
interface IFormOptions extends IBaseFormOptions {
118119
schema?: string;
119120
subkey?: string;
121+
subkeyno?: number;
120122
subschema?: string;
123+
subschemaroot?: string;
121124
}
122125
interface IBuiltInRoute {
123126
route: string;
@@ -222,13 +225,6 @@ declare module fng.services {
222225
};
223226
}
224227
declare module fng.services {
225-
/**
226-
*
227-
* Manipulate record items for generating a form
228-
*
229-
* All methods should be state-less
230-
*
231-
*/
232228
function formGenerator($location: any, $timeout: any, $filter: any, SubmissionsService: any, routingService: any, recordHandler: any): IFormGenerator;
233229
}
234230
declare module fng.services {

dist/forms-angular.js

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,11 @@ var fng;
695695
}
696696
}
697697
if (tabNo >= 0) {
698-
result.before = '<tab select="updateQueryForTab(\'' + info.title + '\')" heading="' + info.title + '" active="tabs[' + tabNo + '].active">';
698+
result.before = '<tab select="updateQueryForTab(\'' + info.title + '\')" heading="' + info.title + '"';
699+
if (tabNo > 0) {
700+
result.before += 'active="tabs[' + tabNo + '].active"';
701+
}
702+
result.before += '>';
699703
result.after = '</tab>';
700704
}
701705
else {
@@ -771,7 +775,7 @@ var fng;
771775
template += topAndTail.before;
772776
template += processInstructions(info.schema, null, {
773777
subschema: 'true',
774-
formStyle: options.formstyle,
778+
formstyle: options.formstyle,
775779
subkey: schemaDefName + '_subkey',
776780
subkeyno: arraySel,
777781
subschemaroot: info.name
@@ -1635,14 +1639,6 @@ var fng;
16351639
(function (fng) {
16361640
var services;
16371641
(function (services) {
1638-
/**
1639-
*
1640-
* Manipulate record items for generating a form
1641-
*
1642-
* All methods should be state-less
1643-
*
1644-
*/
1645-
/*@ngInject*/
16461642
function formGenerator($location, $timeout, $filter, SubmissionsService, routingService, recordHandler) {
16471643
function handleSchema(description, source, destForm, destList, prefix, doRecursion, $scope, ctrlState) {
16481644
function handletabInfo(tabName, thisInst) {
@@ -2336,8 +2332,8 @@ var fng;
23362332
}
23372333
};
23382334
}
2339-
formGenerator.$inject = ["$location", "$timeout", "$filter", "SubmissionsService", "routingService", "recordHandler"];
23402335
services.formGenerator = formGenerator;
2336+
formGenerator.$inject = ["$location", "$timeout", "$filter", "SubmissionsService", "routingService", "recordHandler"];
23412337
})(services = fng.services || (fng.services = {}));
23422338
})(fng || (fng = {}));
23432339
/// <reference path="../../typings/angularjs/angular.d.ts" />

dist/forms-angular.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/forms-angular.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.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"author": "Mark Chapman <support@forms-angular.org>",
44
"description": "A form builder that sits on top of Angular.js, Twitter Bootstrap, jQuery UI, Angular-UI, Express and Mongoose. Opinionated or what?",
55
"homepage": "http://forms-angular.org",
6-
"version": "0.4.1",
6+
"version": "0.5.0",
77
"engines": {
8-
"node": "0.10.x",
8+
"node": ">=0.10.x",
99
"npm": ">=1.x"
1010
},
1111
"dependencies": {

0 commit comments

Comments
 (0)