forms-angular 0.12.0-beta.242 → 0.12.0-beta.244
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/index.d.ts +1 -1
- package/dist/server/data_form.js +1 -0
- package/package.json +18 -23
package/dist/client/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare module fng {
|
|
2
2
|
export interface IFng extends angular.IModule {
|
|
3
3
|
beforeProcess?: (scope: IFormScope, cb: (err?: Error) => void) => void;
|
|
4
|
-
beforeHandleIncomingDataPromises?: () =>
|
|
4
|
+
beforeHandleIncomingDataPromises?: () => angular.IPromise<any>[];
|
|
5
5
|
title?: { prefix?: string; suffix?: string };
|
|
6
6
|
// when provided, the named function (assumed to be present on $rootscope) will be used to determine the visibility
|
|
7
7
|
// of menu items and control groups
|
package/dist/server/data_form.js
CHANGED
|
@@ -732,6 +732,7 @@ class FormsAngular {
|
|
|
732
732
|
}
|
|
733
733
|
}
|
|
734
734
|
outPath[element] = extend(true, {}, paths[element]);
|
|
735
|
+
delete outPath[element].$parentSchemaDocArray; // This is a circular reference and can't be stringified
|
|
735
736
|
if (paths[element].options.secure) {
|
|
736
737
|
hiddenFields.push(element);
|
|
737
738
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"author": "Mark Chapman <support@forms-angular.org>",
|
|
4
4
|
"description": "A form builder that sits on top of Angular.js, Twitter Bootstrap, jQuery UI, Angular-UI, Express and Mongoose. Opinionated or what?",
|
|
5
5
|
"homepage": "http://forms-angular.org",
|
|
6
|
-
"version": "0.12.0-beta.
|
|
6
|
+
"version": "0.12.0-beta.244",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=8.x",
|
|
9
9
|
"npm": ">=5.x"
|
|
@@ -46,56 +46,51 @@
|
|
|
46
46
|
"angular-messages": "1.8.3",
|
|
47
47
|
"angular-sanitize": "1.8.3",
|
|
48
48
|
"angular-ui-bootstrap": "1.3.2 || 2.5.6",
|
|
49
|
-
"angular-ui-grid": "4.
|
|
50
|
-
"async": "3.2.
|
|
49
|
+
"angular-ui-grid": "4.12.4",
|
|
50
|
+
"async": "3.2.5",
|
|
51
51
|
"lodash": "^4.17.21",
|
|
52
52
|
"ng-infinite-scroll": "1.3.0",
|
|
53
|
-
"node.extend": "2.0.
|
|
53
|
+
"node.extend": "2.0.3"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"express": "^4",
|
|
57
|
-
"mongoose": "
|
|
57
|
+
"mongoose": "^8"
|
|
58
58
|
},
|
|
59
|
-
"devDependenciesComments": [
|
|
60
|
-
"mongoose pinned to 7.3.2 to avoid problem testing fng-ui-select:",
|
|
61
|
-
" Converting circular structure to JSON --> starting at object with constructor DocumentArrayPath property $embeddedSchemaType -> object with constructor DocumentArrayElement --- property $parentSchemaType closes the circle",
|
|
62
|
-
" Must be a way we can work around it in time, but trying to get releases out atm"
|
|
63
|
-
],
|
|
64
59
|
"devDependencies": {
|
|
65
|
-
"@types/angular": "1.8.
|
|
66
|
-
"@types/lodash": "4.14.
|
|
67
|
-
"@types/mocha": "^10.0.
|
|
60
|
+
"@types/angular": "1.8.9",
|
|
61
|
+
"@types/lodash": "4.14.202",
|
|
62
|
+
"@types/mocha": "^10.0.6",
|
|
68
63
|
"@types/node": "^18.11.13",
|
|
69
64
|
"angular-mocks": "1.8.3",
|
|
70
|
-
"body-parser": "1.20.
|
|
65
|
+
"body-parser": "1.20.2",
|
|
71
66
|
"bower": "^1.8.14",
|
|
72
|
-
"del": "6.
|
|
67
|
+
"del": "6.1.1",
|
|
73
68
|
"express": "4.18.2",
|
|
74
69
|
"gulp": "^4.0.2",
|
|
75
70
|
"gulp-angular-templatecache": "3.0.1",
|
|
76
71
|
"gulp-clean-css": "4.3.0",
|
|
77
72
|
"gulp-concat": "2.6.1",
|
|
78
73
|
"gulp-less": "5.0.0",
|
|
79
|
-
"gulp-mocha": "
|
|
74
|
+
"gulp-mocha": "9.0.0",
|
|
80
75
|
"gulp-ng-annotate": "2.1.0",
|
|
81
76
|
"gulp-rename": "2.0.0",
|
|
82
|
-
"gulp-replace": "^1.1.
|
|
77
|
+
"gulp-replace": "^1.1.4",
|
|
83
78
|
"gulp-typescript": "5.0.1",
|
|
84
79
|
"gulp-uglify": "3.0.2",
|
|
85
80
|
"gulp-umd": "2.0.0",
|
|
86
|
-
"jasmine-core": "
|
|
87
|
-
"karma": "^6.4.
|
|
88
|
-
"karma-chrome-launcher": "^3.
|
|
81
|
+
"jasmine-core": "5.1.1",
|
|
82
|
+
"karma": "^6.4.2",
|
|
83
|
+
"karma-chrome-launcher": "^3.2.0",
|
|
89
84
|
"karma-firefox-launcher": "^2.1.2",
|
|
90
85
|
"karma-jasmine": "5.1.0",
|
|
91
86
|
"karma-junit-reporter": "2.0.1",
|
|
92
87
|
"karma-ng-html2js-preprocessor": "1.0.0",
|
|
93
88
|
"matchdep": "2.0.0",
|
|
94
89
|
"mocha": "^10.2.0",
|
|
95
|
-
"mongoose": "
|
|
96
|
-
"prettier": "
|
|
90
|
+
"mongoose": "^8",
|
|
91
|
+
"prettier": "3.1.1",
|
|
97
92
|
"pump": "3.0.0",
|
|
98
|
-
"typescript": "4.
|
|
93
|
+
"typescript": "=4.9.5"
|
|
99
94
|
},
|
|
100
95
|
"license": "MIT"
|
|
101
96
|
}
|