Skip to content

Commit 3e62a81

Browse files
committed
Version 2.4.1
2 parents c5d35c2 + 3138a31 commit 3e62a81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1289
-626
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ insert_final_newline = false
1313

1414
[*.scss]
1515
indent_size = 2
16+
17+
[*.html]
18+
indent_size = 2

.github/CONTRIBUTING.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
## Work on `dev`
44
Any merge request should be created from and issued to the `dev` branch.
55

6-
## dist files
7-
Keep it simple, don't commit any files in the `dist` directory, I build these files only before a release.
8-
96
## Core vs Plugins
107
I want to keep the core clean of extra (and certainly awesome) functionalities. That includes, but is not limited to, export/import plugins, visual aids, etc.
118

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
- [ ] I read the [guidelines for contributing](https://github.com/mistic100/jQuery-QueryBuilder/blob/master/.github/CONTRIBUTING.md)
44
- [ ] I created my branch from `dev` and I am issuing the PR to `dev`
5-
- [ ] I **didn't** commited files in the `dist` directory
65
- [ ] Unit tests are OK
76
- [ ] If it's a new feature, I added the necessary unit tests
87
- [ ] If it's a new language, I filled the `__locale` and `__author` fields

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![CDN](https://img.shields.io/badge/cdn-jsdelivr-%23EB4C36.svg?style=flat-square)](http://www.jsdelivr.com/projects/jquery.query-builder)
55
[![Build Status](https://img.shields.io/travis/mistic100/jQuery-QueryBuilder.svg?style=flat-square)](https://travis-ci.org/mistic100/jQuery-QueryBuilder)
66
[![Coverage Status](https://img.shields.io/coveralls/mistic100/jQuery-QueryBuilder/master.svg?style=flat-square)](https://coveralls.io/r/mistic100/jQuery-QueryBuilder)
7+
[![Say thanks](https://img.shields.io/badge/SayThanks.io-%E2%98%80-1EAEDB.svg?style=flat-square)](https://saythanks.io/to/mistic100)
78

89
jQuery plugin offering an simple interface to create complex queries.
910

@@ -16,7 +17,7 @@ http://querybuilder.js.org
1617
* jQuery >= 1.10
1718
* Bootstrap >= 3.1 (CSS only)
1819
* [jQuery.extendext](https://github.com/mistic100/jQuery.extendext)
19-
* [doT.js](http://olado.github.io/doT) (@master until the author decide to publish a new version)
20+
* [doT.js >= 1.0.3](http://olado.github.io/doT)
2021
* [MomentJS](http://momentjs.com) (optional, for Date/Time validation)
2122
* Other Bootstrap/jQuery plugins used by plugins
2223

bower.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
"dist/css/query-builder.default.css"
1414
],
1515
"dependencies": {
16-
"jquery": ">= 1.9.0",
17-
"bootstrap": ">= 3.1.0",
18-
"moment": ">= 2.6.0",
19-
"jquery-extendext": ">= 0.1.2",
20-
"doT": "master"
16+
"jquery": ">=1.9.0",
17+
"bootstrap": ">=3.1.0",
18+
"moment": ">=2.6.0",
19+
"jquery-extendext": ">=0.1.2",
20+
"doT": ">=1.0.3"
2121
},
2222
"devDependencies": {
2323
"blanket": "^1.1.0",
2424
"qunit": "^1.23.0",
2525
"bootstrap-select": "^1.10.0",
2626
"bootbox": "^4.4.0",
2727
"awesome-bootstrap-checkbox": "^0.3.0",
28-
"sql-parser": "^1.0.0",
28+
"sql-parser": "^1.1.0",
2929
"bind-polyfill": "~1.0.0",
3030
"interact": "^1.2.6"
3131
},

dist/css/query-builder.dark.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jQuery QueryBuilder 2.4.0
3-
* Copyright 2014-2016 Damien "Mistic" Sorel (http://www.strangeplanet.fr)
2+
* jQuery QueryBuilder 2.4.1
3+
* Copyright 2014-2017 Damien "Mistic" Sorel (http://www.strangeplanet.fr)
44
* Licensed under MIT (http://opensource.org/licenses/MIT)
55
*/
66

@@ -32,7 +32,15 @@
3232
}
3333
.query-builder .rules-group-header .group-conditions .btn.readonly:not(.active),
3434
.query-builder .rules-group-header .group-conditions input[name$=_cond] {
35-
display: none;
35+
border: 0;
36+
clip: rect(0 0 0 0);
37+
height: 1px;
38+
margin: -1px;
39+
overflow: hidden;
40+
padding: 0;
41+
position: absolute;
42+
width: 1px;
43+
white-space: nowrap;
3644
}
3745
.query-builder .rules-group-header .group-conditions .btn.readonly {
3846
border-radius: 3px;

dist/css/query-builder.dark.min.css

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

dist/css/query-builder.default.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jQuery QueryBuilder 2.4.0
3-
* Copyright 2014-2016 Damien "Mistic" Sorel (http://www.strangeplanet.fr)
2+
* jQuery QueryBuilder 2.4.1
3+
* Copyright 2014-2017 Damien "Mistic" Sorel (http://www.strangeplanet.fr)
44
* Licensed under MIT (http://opensource.org/licenses/MIT)
55
*/
66

@@ -32,7 +32,15 @@
3232
}
3333
.query-builder .rules-group-header .group-conditions .btn.readonly:not(.active),
3434
.query-builder .rules-group-header .group-conditions input[name$=_cond] {
35-
display: none;
35+
border: 0;
36+
clip: rect(0 0 0 0);
37+
height: 1px;
38+
margin: -1px;
39+
overflow: hidden;
40+
padding: 0;
41+
position: absolute;
42+
width: 1px;
43+
white-space: nowrap;
3644
}
3745
.query-builder .rules-group-header .group-conditions .btn.readonly {
3846
border-radius: 3px;

dist/css/query-builder.default.min.css

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

dist/i18n/query-builder.ar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery QueryBuilder 2.4.0
2+
* jQuery QueryBuilder 2.4.1
33
* Locale: Arabic (ar)
44
* Author: Mohamed YOUNES, https://github.com/MedYOUNES
55
* Licensed under MIT (http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)