Skip to content

Commit 686b8e1

Browse files
committed
Version 2.0.2.
1 parent 1d51d9b commit 686b8e1

7 files changed

+14
-12
lines changed

bower.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "structured-filter",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "jQuery UI widget for structured queries",
55
"homepage": "http://evoluteur.github.io/structured-filter/",
66
"main": [
@@ -27,7 +27,8 @@
2727
"form",
2828
"ui",
2929
"input",
30-
"widget",
30+
"model",
31+
"metadata",
3132
"jquery",
3233
"jquery-ui"
3334
]

css/demo.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
body{
66
padding: 10px 20px;
7-
font-size: 11pt;
7+
font-size: 12pt;
88
font-family: "Century Gothic",arial;
99
color: #777;
1010
font-weight: 300;

css/structured-filter.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
structured-filter 2.0.1
2+
structured-filter 2.0.2
33
http://evoluteur.github.io/structured-filter/
44
(c) 2019 Olivier Giulieri
55
*/

index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2 id="github">
2424

2525
<h1>Structured-Filter</h1>
2626

27-
<p>Structured-Filter (currently v2.0.1) is a Web UI for building structured search queries. It is a full jQuery UI widget, supporting various configurations and themes.
27+
<p>Structured-Filter (currently v2.0.2) is a Web UI for building structured search queries. It is a full jQuery UI widget, supporting various configurations and themes.
2828
</p>
2929

3030
<p>
@@ -95,8 +95,7 @@ <h1>Structured-Filter</h1>
9595

9696
$(document).ready(function(){
9797

98-
var v,
99-
valueFormat = 'json';
98+
var v, valueFormat = 'json';
10099

101100
function updateValue(format){
102101
switch(format){

js/structured-filter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* structured-filter 2.0.1
2+
* structured-filter 2.0.2
33
*
44
* (c) 2019 Olivier Giulieri
55
*

js/structured-filter.min.js

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

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "structured-filter",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Generic Web UI for building structured search or filter queries. With it you can build structured search conditions like Firstname starts with 'A' and Birthday after 1/1/1990 and State in (CA, NY, FL)...",
55
"copyright": "(c) 2019 Olivier Giulieri",
66
"homepage": "http://evoluteur.github.io/structured-filter/",
@@ -25,13 +25,15 @@
2525
},
2626
"main": "js/structured-filter.js",
2727
"keywords": [
28+
"model",
2829
"faceted",
2930
"filter",
3031
"query",
3132
"editor",
3233
"search",
3334
"form",
34-
"widget",
35+
"metadata",
36+
"UI",
3537
"jquery",
3638
"jquery-ui",
3739
"jquery-plugin"

0 commit comments

Comments
 (0)