Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit ee48df5

Browse files
authored
Merge pull request #220 from formio/build/2.8.2
Build/2.8.2
2 parents 5f4fc1b + f7e6ed8 commit ee48df5

7 files changed

+866
-539
lines changed

dist/ngFormBuilder-complete.js

+402-241
Large diffs are not rendered by default.

dist/ngFormBuilder-complete.min.js

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ngFormBuilder-full.js

+402-241
Large diffs are not rendered by default.

dist/ngFormBuilder-full.min.js

+35-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ngFormBuilder.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -2045,6 +2045,11 @@ module.exports = function(app) {
20452045
'</div>' +
20462046
'<form-builder-option ng-show="component.dataSrc == \'url\' || component.dataSrc == \'resource\'" property="searchField" label="Search Query Name" placeholder="Name of URL query parameter" title="The name of the search querystring parameter used when sending a request to filter results with. The server at the URL must handle this query parameter."></form-builder-option>' +
20472047
'<form-builder-option ng-show="component.dataSrc == \'url\' || component.dataSrc == \'resource\'" property="filter" label="Filter Query" placeholder="The filter query for results." title="Use this to provide additional filtering using query parameters."></form-builder-option>' +
2048+
'<form-builder-option ng-show="component.dataSrc == \'url\' || component.dataSrc == \'resource\' || component.dataSrc == \'json\'" property="limit" label="Limit" placeholder="Maximum number of items to view per page of results." title="Use this to limit the number of items to request or view."></form-builder-option>' +
2049+
'<div class="form-group" ng-show="component.dataSrc == \'json\'">' +
2050+
' <label for="filter" form-builder-tooltip="The filter type for search.">Search Filter</label>' +
2051+
' <select class="form-control" id="filter" name="filter" ng-model="component.filter" ng-options="value as label for (value, label) in {none: \'No Search\', contains: \'Contains\', startsWith: \'Starts With\'}"></select>' +
2052+
'</div>' +
20482053
'<div class="form-group" ng-show="component.dataSrc == \'custom\'">' +
20492054
' <label for="custom" form-builder-tooltip="Write custom code to return the value options. The form data object is available.">Custom Values</label>' +
20502055
' <textarea class="form-control" rows="10" id="custom" name="custom" ng-model="component.data.custom" placeholder="/*** Example Code ***/\nvalues = data[\'mykey\'];">{{ component.data.custom }}</textarea>' +
@@ -3908,7 +3913,7 @@ module.exports = ['$timeout','$q', function($timeout, $q) {
39083913

39093914
},{}],54:[function(_dereq_,module,exports){
39103915
"use strict";
3911-
/*! ng-formio-builder v2.8.1 | https://unpkg.com/[email protected].1/LICENSE.txt */
3916+
/*! ng-formio-builder v2.8.2 | https://unpkg.com/[email protected].2/LICENSE.txt */
39123917
/*global window: false, console: false */
39133918
/*jshint browser: true */
39143919

dist/ngFormBuilder.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-formio-builder",
3-
"version": "2.8.1",
3+
"version": "2.8.2",
44
"description": "The Angular.js form builder component.",
55
"main": "dist/ngFormBuilder.js",
66
"scripts": {

0 commit comments

Comments
 (0)