Skip to content

Commit f999107

Browse files
committed
chore(build) Bump version numbers
1 parent 7fc8cf6 commit f999107

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fng-ui-select",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"author": "Mark Chapman <support@forms-angular.org>",
55
"description": "ui-select plugin for forms-angular",
66
"main": [
@@ -13,7 +13,7 @@
1313
"license": "MIT",
1414
"homepage": "www.forms-angular.org",
1515
"dependencies": {
16-
"angular-ui-select": "0.13.1"
16+
"angular-ui-select": "0.11.1"
1717
},
1818
"ignore": [
1919
"**/.*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fng-ui-select",
33
"author": "Mark Chapman <support@forms-angular.org>",
4-
"version": "0.5.1",
4+
"version": "0.6.0",
55
"description": "angular-ui-select plugin for forms-angular",
66
"repository": {
77
"type": "git",

test/e2e/multiple-control.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ describe('Multiple controls array', function () {
114114
addToArray('multipleInsideAjax');
115115

116116
var array = by.css('#cg_f_multipleInsideAjax a.select2-choice.ui-select-match');
117-
expect(element.all(array).get(0).getText()).toEqual('Select an option...');
118-
expect(element.all(array).get(1).getText()).toEqual('Select an option...');
117+
expect(element.all(array).get(0).getText()).toEqual('Start typing...');
118+
expect(element.all(array).get(1).getText()).toEqual('Start typing...');
119119

120120
// select entry with mouse
121121
element(by.css('#f_multipleInsideAjax_0 a span.select2-arrow')).click();
@@ -145,8 +145,8 @@ describe('Multiple controls array', function () {
145145
addToArray('multipleOutsideAjax');
146146

147147
var array = by.css('#cg_f_multipleOutsideAjax a.select2-choice.ui-select-match');
148-
expect(element.all(array).get(0).getText()).toEqual('Select an option...');
149-
expect(element.all(array).get(1).getText()).toEqual('Select an option...');
148+
expect(element.all(array).get(0).getText()).toEqual('Start typing...');
149+
expect(element.all(array).get(1).getText()).toEqual('Start typing...');
150150

151151
// select entry with mouse
152152
element(by.css('#f_multipleOutsideAjax_0 a span.select2-arrow')).click();

test/e2e/single-control.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ describe('Single control', function () {
4949
it('should handle Ajax lookup', function () {
5050
browser.get('/#/test_fng_ui_select/new');
5151
var match = $('#cg_f_singleAjax a.select2-choice.ui-select-match');
52-
expect(match.getText()).toEqual('Select an option...');
52+
expect(match.getText()).toEqual('Start typing...');
5353
var field = element(by.model('record.surname'));
5454
field.clear();
5555
field.sendKeys('Smith');
5656
var saveButton = $('#saveButton');
5757
saveButton.click();
58-
expect(match.getText()).toEqual('Select an option...');
58+
expect(match.getText()).toEqual('Start typing...');
5959

6060
$('#cg_f_singleAjax .select2-arrow').click();
6161
field = $('#cg_f_singleAjax input.select2-input');
@@ -72,7 +72,7 @@ describe('Single control', function () {
7272
it('should handle filtered Ajax lookup', function () {
7373
browser.get('/#/test_fng_ui_select/new');
7474
var match = $('#cg_f_filteredAjax a.select2-choice.ui-select-match');
75-
expect(match.getText()).toEqual('Select an option...');
75+
expect(match.getText()).toEqual('Start typing...');
7676
$('#cg_f_filteredAjax .select2-arrow').click();
7777
var field = $('#cg_f_filteredAjax input.select2-input');
7878
field.clear();

0 commit comments

Comments
 (0)